The Gaudi Framework  v29r0 (ff2e7097)
ISerialize.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_ISERIALIZE_H
2 #define GAUDIKERNEL_ISERIALIZE_H
3 
4 // Framework include files
6 
7 // Forward declarations
8 class StreamBuffer;
9 
17 class GAUDI_API ISerialize : virtual public IInterface
18 {
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:41
#define DeclareInterfaceID(iface, major, minor)
Macro to declare the interface ID when using the new mechanism of extending and implementing interfac...
Definition: IInterface.h:13
Definition of the basic interface.
Definition: IInterface.h:277
#define GAUDI_API
Definition: Kernel.h:110
Object serialization interface definition.
Definition: ISerialize.h:17