SMTK  @SMTK_VERSION@
Simulation Modeling Tool Kit
TerrainExtraction.h
1 //=========================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //=========================================================================
10 #ifndef smtk_model_TerrainExtraction_h
11 #define smtk_model_TerrainExtraction_h
12 
13 #include "smtk/operation/XMLOperation.h"
14 
15 namespace smtk
16 {
17 namespace model
18 {
19 
20 class SMTKCORE_EXPORT TerrainExtraction : public smtk::operation::XMLOperation
21 {
22 public:
27 
28 protected:
29  Result operateInternal() override;
30  const char* xmlDescription() const override;
31 };
32 
33 } //namespace model
34 } // namespace smtk
35 
36 #endif // smtk_model_TerrainExtraction_h
smtk
The main namespace for the Simulation Modeling Tool Kit (SMTK).
Definition: doc.h:33
smtk::operation::XMLOperation
A specialization of smtk::operation::Operation for operations whose specifications are defined by an ...
Definition: XMLOperation.h:23
smtkCreateMacro
#define smtkCreateMacro(...)
Add static create() methods to a class.
Definition: SharedFromThis.h:173
smtkSharedFromThisMacro
#define smtkSharedFromThisMacro(...)
A macro to help with derived classes whose bases enable shared_from_this().
Definition: SharedFromThis.h:250
smtk::model::TerrainExtraction
Definition: TerrainExtraction.h:20
smtk::operation::Operation
Operation is a base class for all SMTK operations.
Definition: Operation.h:62
smtkTypeMacro
#define smtkTypeMacro(...)
Add typedefs to a class for identifcation.
Definition: SharedFromThis.h:128
smtkSuperclassMacro
#define smtkSuperclassMacro(...)
Add a typedef to the superclass of this class.
Definition: SharedFromThis.h:147