Free Electron
Proxy.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 __element_Proxy_h__
8 #define __element_Proxy_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Proxy RecordView
16 
17  @ingroup element
18 *//***************************************************************************/
19 class FE_DL_EXPORT Proxy: public Sphere
20 {
21  public:
22  Functor<I32> inceptionMS;
23 
24  Proxy(void) { setName("Proxy"); }
25 virtual void addFunctors(void)
26  {
28 
29  add(inceptionMS, FE_SPEC("ai:inceptionMS",
30  "When we last saw a remembrance"));
31  }
32 virtual void initializeRecord(void)
33  {
35 
36  inceptionMS()=0;
37  }
38 };
39 
40 } /* namespace ext */
41 } /* namespace fe */
42 
43 #endif /* __element_Proxy_h__ */
virtual void addFunctors(void)
Called at instantiation to add functors.
Definition: Sphere.h:36
kernel
Definition: namespace.dox:3
Bound accessor in a RecordView.
Definition: RecordView.h:147
virtual void initializeRecord(void)
Called at instantiation to initialize attributes.
Definition: Sphere.h:42
virtual void initializeRecord(void)
Called at instantiation to initialize attributes.
Definition: Proxy.h:32
Proxy RecordView.
Definition: Proxy.h:19
Sphere RecordView.
Definition: Sphere.h:28
virtual void addFunctors(void)
Called at instantiation to add functors.
Definition: Proxy.h:25