Free Electron
RecordableI.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __datatool_RecordableI_h__
8 #define __datatool_RecordableI_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Generic binding to a serializable state
17 
18  @ingroup datatool
19 *//***************************************************************************/
20 class FE_DL_EXPORT RecordableI:
21  virtual public Component,
22  public CastableAs<RecordableI>
23 {
24  public:
25 virtual void bind(Record& a_rRecord) =0;
26 };
27 
28 } /* namespace ext */
29 } /* namespace fe */
30 
31 #endif /* __datatool_RecordableI_h__ */
kernel
Definition: namespace.dox:3
Generic binding to a serializable state.
Definition: RecordableI.h:20
Reference to an instance of a Layout.
Definition: RecordSB.h:35
Base for all interfacable components.
Definition: Component.h:20
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192