home *** CD-ROM | disk | FTP | other *** search
- //
- // $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_
-