Free Electron
ValueManipulator.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 __operator_ValueManipulator_h__
8 #define __operator_ValueManipulator_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Manipulator to adjust a list of values
17 
18  @ingroup operator
19 *//***************************************************************************/
20 class FE_DL_EXPORT ValueManipulator:
21  public ManipulatorCommon,
22  public Initialize<ValueManipulator>
23 {
24  public:
25 
26  ValueManipulator(void) {}
27 virtual ~ValueManipulator(void) {}
28 
29  void initialize(void);
30 
31  //* As HandlerI (window events)
32 virtual void handle(Record& a_rSignal);
33 
34  protected:
35  //* As ManipulatorCommon
36 virtual void updateGrips(void);
37 
38  private:
39 
40 };
41 
42 } /* namespace ext */
43 } /* namespace fe */
44 
45 #endif /* __operator_ValueManipulator_h__ */
Partial Generic ManipulatorI Implemention.
Definition: ManipulatorCommon.h:20
Manipulator to adjust a list of values.
Definition: ValueManipulator.h:20
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Reference to an instance of a Layout.
Definition: RecordSB.h:35