Free Electron
OperatorPlugin.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 __operate_OperatorPlugin_h__
8 #define __operate_OperatorPlugin_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Plugin back reference for OperatorSurfaceI
17 
18  @ingroup operate
19 *//***************************************************************************/
20 class FE_DL_EXPORT OperatorPlugin
21 {
22  public:
23 
24 virtual void dirty(BWORD a_aggressive) =0;
25 virtual void select(void) =0;
26 virtual BWORD chronicle(String a_change,sp<Counted> a_spOldCounted,
27  sp<Counted> a_spNewCounted) =0;
28 virtual BWORD interrupted(void) =0;
29 };
30 
31 } /* namespace ext */
32 } /* namespace fe */
33 
34 #endif /* __operate_OperatorPlugin_h__ */
kernel
Definition: namespace.dox:3
Automatically reference-counted string container.
Definition: String.h:128
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53
Plugin back reference for OperatorSurfaceI.
Definition: OperatorPlugin.h:20