Free Electron
TransformOp.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_TransformOp_h__
8 #define __operator_TransformOp_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Apply a transformation to an entire surface
17 
18  @ingroup operator
19 *//***************************************************************************/
20 class FE_DL_EXPORT TransformOp:
21  public HammerOp,
22  public Initialize<TransformOp>
23 {
24  public:
25 
26  TransformOp(void)
27  { m_anchorless=TRUE; }
28 
29 virtual ~TransformOp(void) {}
30 
31  void initialize(void);
32 
33  //* As HandlerI
34 virtual void handle(Record& a_rSignal);
35 };
36 
37 } /* namespace ext */
38 } /* namespace fe */
39 
40 #endif /* __operator_TransformOp_h__ */
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
Operator to alter regions of a surface.
Definition: HammerOp.h:20
Apply a transformation to an entire surface.
Definition: TransformOp.h:20