SMTK  @SMTK_VERSION@
Simulation Modeling Tool Kit
ImageInspector.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_geometry_ImageInspector_h
11 #define smtk_geometry_ImageInspector_h
12 
13 #include "smtk/extension/vtk/operators/vtkSMTKOperationsExtModule.h"
14 #include "smtk/geometry/Resource.h"
15 #include "smtk/operation/XMLOperation.h"
16 
17 namespace smtk
18 {
19 namespace geometry
20 {
21 
27 class VTKSMTKOPERATIONSEXT_EXPORT ImageInspector : public smtk::operation::XMLOperation
28 {
29 public:
33  smtkSuperclassMacro(Operation);
34 
35 protected:
36  Result operateInternal() override;
37  const char* xmlDescription() const override;
38  void generateSummary(Result&) override {}
39 };
40 
41 } // namespace geometry
42 } // namespace smtk
43 
44 #endif //smtk_geometry_ImageInspector_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:113
smtkSharedFromThisMacro
#define smtkSharedFromThisMacro(...)
A macro to help with derived classes whose bases enable shared_from_this().
Definition: SharedFromThis.h:190
smtk::operation::Operation
Operation is a base class for all SMTK operations.
Definition: Operation.h:51
smtkTypeMacro
#define smtkTypeMacro(...)
Add typedefs to a class for identifcation.
Definition: SharedFromThis.h:51
smtk::geometry::ImageInspector
Inspect a volumetric mesh with a crinkle-slice.
Definition: ImageInspector.h:27
smtkSuperclassMacro
#define smtkSuperclassMacro(...)
Add a typedef to the superclass of this class.
Definition: SharedFromThis.h:87