summaryrefslogtreecommitdiff
path: root/Source/cmFLTKWrapUICommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmFLTKWrapUICommand.h')
-rw-r--r--Source/cmFLTKWrapUICommand.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/Source/cmFLTKWrapUICommand.h b/Source/cmFLTKWrapUICommand.h
index 617fcd9553..2e6005161c 100644
--- a/Source/cmFLTKWrapUICommand.h
+++ b/Source/cmFLTKWrapUICommand.h
@@ -28,17 +28,14 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
- {
- return new cmFLTKWrapUICommand;
- }
+ virtual cmCommand* Clone() { return new cmFLTKWrapUICommand; }
/**
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
virtual bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus &status);
+ cmExecutionStatus& status);
/**
* This is called at the end after all the information
@@ -52,13 +49,13 @@ public:
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual std::string GetName() const { return "fltk_wrap_ui";}
+ virtual std::string GetName() const { return "fltk_wrap_ui"; }
private:
/**
* List of produced files.
*/
- std::vector<cmSourceFile *> GeneratedSourcesClasses;
+ std::vector<cmSourceFile*> GeneratedSourcesClasses;
/**
* List of Fluid files that provide the source
@@ -67,6 +64,4 @@ private:
std::string Target;
};
-
-
#endif