Free Electron
SurfaceCopyOp.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_OperatorSurfaceCopy_h__
8 #define __operator_OperatorSurfaceCopy_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Copy first input surface onto points of second surface
17 
18  @ingroup operator
19 *//***************************************************************************/
20 class FE_DL_EXPORT SurfaceCopyOp:
21  public OperatorSurfaceCommon,
22  public Initialize<SurfaceCopyOp>
23 {
24  public:
25  SurfaceCopyOp(void) {}
26 virtual ~SurfaceCopyOp(void) {}
27 
28  void initialize(void);
29 
30  //* As HandlerI
31 virtual void handle(Record& a_rSignal);
32 
33 static void copyAttributes(String a_attrRegex,
34  sp<SurfaceAccessibleI> a_spTemplateAccessible,
35  sp<SurfaceAccessibleI> a_spOutputAccessible,
36  I32 a_templateStart,I32 a_templateCount,
37  I32 a_outputStart,I32 a_grain);
38 };
39 
40 } /* namespace ext */
41 } /* namespace fe */
42 
43 #endif /* __operator_OperatorSurfaceCopy_h__ */
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117
Automatically reference-counted string container.
Definition: String.h:128
Partial Generic SurfaceI Implemention.
Definition: OperatorSurfaceCommon.h:20
Copy first input surface onto points of second surface.
Definition: SurfaceCopyOp.h:20
Reference to an instance of a Layout.
Definition: RecordSB.h:35
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53