summaryrefslogtreecommitdiffstats
path: root/Source/cmQTWrapCPPCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmQTWrapCPPCommand.h')
-rw-r--r--Source/cmQTWrapCPPCommand.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/Source/cmQTWrapCPPCommand.h b/Source/cmQTWrapCPPCommand.h
index ad5740d..79d729b 100644
--- a/Source/cmQTWrapCPPCommand.h
+++ b/Source/cmQTWrapCPPCommand.h
@@ -45,14 +45,6 @@ public:
* the CMakeLists.txt file.
*/
virtual bool InitialPass(std::vector<std::string> const& args);
-
- /**
- * 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.
- */
- virtual void FinalPass();
/**
* The name of the command as specified in CMakeList.txt.
@@ -79,18 +71,6 @@ public:
"The moc files will be added to the library using the DestName "
"source list.";
}
-
-private:
- /**
- * List of produced files.
- */
- std::vector<cmSourceFile> WrapClasses;
- /**
- * List of header files that pprovide the source for WrapClasses.
- */
- std::vector<std::string> WrapHeaders;
- std::string LibraryName;
- std::string SourceList;
};