summaryrefslogtreecommitdiffstats
path: root/Source/cmFLTKWrapUICommand.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-12-28 22:58:29 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-07-18 09:53:46 (GMT)
commit6a1a3763eea8f1bd2a6ca444c02af30d300cacc0 (patch)
tree27ada10c86d1980737e4dc93a0fb27574b335ec9 /Source/cmFLTKWrapUICommand.h
parent20169f0b8de5d0e5efea2d67a735332786173c23 (diff)
downloadCMake-6a1a3763eea8f1bd2a6ca444c02af30d300cacc0.zip
CMake-6a1a3763eea8f1bd2a6ca444c02af30d300cacc0.tar.gz
CMake-6a1a3763eea8f1bd2a6ca444c02af30d300cacc0.tar.bz2
cmFLTKWrapUICommand: Port away from FinalPass
Diffstat (limited to 'Source/cmFLTKWrapUICommand.h')
-rw-r--r--Source/cmFLTKWrapUICommand.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/Source/cmFLTKWrapUICommand.h b/Source/cmFLTKWrapUICommand.h
index bff4f01..ea8d401 100644
--- a/Source/cmFLTKWrapUICommand.h
+++ b/Source/cmFLTKWrapUICommand.h
@@ -13,7 +13,6 @@
#include "cmCommand.h"
class cmExecutionStatus;
-class cmSourceFile;
/** \class cmFLTKWrapUICommand
* \brief Create .h and .cxx files rules for FLTK user interfaces files
@@ -38,27 +37,6 @@ public:
*/
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) override;
-
- /**
- * This is called at the end after all the information
- * specified by the command is accumulated. Most commands do
- * not implement this method. At this point, reading and
- * writing to the cache can be done.
- */
- void FinalPass() override;
- bool HasFinalPass() const override { return true; }
-
-private:
- /**
- * List of produced files.
- */
- std::vector<cmSourceFile*> GeneratedSourcesClasses;
-
- /**
- * List of Fluid files that provide the source
- * generating .cxx and .h files
- */
- std::string Target;
};
#endif