All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ISerialize.h
Go to the documentation of this file.
1 // $Header: /tmp/svngaudi/tmp.jEpFh25751/Gaudi/GaudiKernel/GaudiKernel/ISerialize.h,v 1.3 2001/01/19 14:22:55 mato Exp $
2 #ifndef GAUDIKERNEL_ISERIALIZE_H
3 #define GAUDIKERNEL_ISERIALIZE_H
4 
5 // Framework include files
7 
8 // Forward declarations
9 class StreamBuffer;
10 
18 class GAUDI_API ISerialize: virtual public IInterface {
19 public:
22 
27  virtual StreamBuffer& serialize(StreamBuffer& str) = 0;
32  virtual StreamBuffer& serialize(StreamBuffer& str) const = 0;
33 };
34 
35 #endif // GAUDIKERNEL_ISERIALIZE_H
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:40
Definition of the basic interface.
Definition: IInterface.h:160
#define DeclareInterfaceID(name, major, minor)
Macro to declare the interface ID when using the new mechanism of extending and implementing interfac...
Definition: IInterface.h:23
#define GAUDI_API
Definition: Kernel.h:108
Object serialization interface definition.
Definition: ISerialize.h:18