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