Free Electron
RecorderI.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_RecorderI_h__
8 #define __datatool_RecorderI_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Storage of incremental state to a resource, like a file
17 
18  @ingroup datatool
19 *//***************************************************************************/
20 class FE_DL_EXPORT RecorderI:
21  virtual public Component,
22  public CastableAs<RecorderI>
23 {
24  public:
25 virtual void configure(String pathname,U32 limit) =0;
26 virtual String findNameFor(Real scalar) =0;
27 };
28 
29 } /* namespace ext */
30 } /* namespace fe */
31 
32 #endif /* __datatool_RecorderI_h__ */
kernel
Definition: namespace.dox:3
Storage of incremental state to a resource, like a file.
Definition: RecorderI.h:20
Automatically reference-counted string container.
Definition: String.h:128
Base for all interfacable components.
Definition: Component.h:20
Per-class participation non-RTTI fallback dynamic casting mechanism.
Definition: Castable.h:192