31 lines
745 B
C++
31 lines
745 B
C++
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 1994,1995 Southeastern Universities Research Association,
|
|
// Continuous Electron Beam Accelerator Facility
|
|
//
|
|
// This software was developed under a United States Government license
|
|
// described in the NOTICE file included as part of this distribution.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// Description:
|
|
// Abstract class
|
|
//
|
|
// Author: Jie Chen
|
|
//
|
|
//
|
|
//
|
|
#ifndef _RSVC_HASHABLE_H
|
|
#define _RSVC_HASHABLE_H
|
|
|
|
class rsvcHashable
|
|
{
|
|
public:
|
|
// destructor
|
|
virtual ~rsvcHashable (void);
|
|
virtual unsigned int hash (void) = 0;
|
|
|
|
protected:
|
|
rsvcHashable (void);
|
|
};
|
|
#endif
|