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