Free Electron
SurfaceWaveOp.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 __optest_OperatorSurfaceWave_h__
8 #define __optest_OperatorSurfaceWave_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Apply Wave Effect to a Surface
16 
17  @ingroup optest
18 *//***************************************************************************/
19 class FE_DL_EXPORT SurfaceWaveOp:
20  public OperatorSurfaceCommon,
21  public Initialize<SurfaceWaveOp>
22 {
23  public:
24  SurfaceWaveOp(void) {}
25 virtual ~SurfaceWaveOp(void) {}
26 
27  void initialize(void);
28 
29  //* As HandlerI
30 virtual void handle(Record& a_rSignal);
31 };
32 
33 } /* namespace ext */
34 } /* namespace fe */
35 
36 #endif /* __optest_OperatorSurfaceWave_h__ */
kernel
Definition: namespace.dox:3
Apply Wave Effect to a Surface.
Definition: SurfaceWaveOp.h:19
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Partial Generic SurfaceI Implemention.
Definition: OperatorSurfaceCommon.h:20
Reference to an instance of a Layout.
Definition: RecordSB.h:35