Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v28r2p1 (f1a77ff4)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 public:
21 
26  virtual StreamBuffer& serialize(StreamBuffer& str) = 0;
31  virtual StreamBuffer& serialize(StreamBuffer& str) const = 0;
32 };
33 
34 #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:14
Definition of the basic interface.
Definition: IInterface.h:234
#define GAUDI_API
Definition: Kernel.h:107
Object serialization interface definition.
Definition: ISerialize.h:17