home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 Mobile
/
Chip_Mobile_2001.iso
/
palm
/
business
/
printcar
/
printcar.exe
/
src
/
DB
/
AppInfo.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-06-10
|
535b
|
30 lines
//
// $Id: AppInfo.h,v 1.1 2000/06/10 00:20:00 sergey Exp $
//
#ifndef _AppInfo_h_
#define _AppInfo_h_
namespace DB
{
//
// AppInfo interface.
//
class AppInfo
{
protected:
AppInfo() {}
virtual ~AppInfo() {}
// operations
public:
// Restores object out from the buffer.
// Returns false in case the object can't be correctly restored.
virtual bool restore(const void* buffer) = 0;
};
}
// namespace DB
#endif // _AppInfo_h_