ENH: always write out all custom commands

This commit is contained in:
Ken Martin
2005-07-28 09:14:42 -04:00
parent 6873773487
commit 825a762a30
3 changed files with 1 additions and 31 deletions
-5
View File
@@ -49,16 +49,11 @@ public:
/** Get the comment string for the command. */
const char* GetComment() const;
/** set get the used status of the command */
void Used() { m_Used = true;};
bool IsUsed() { return m_Used;};
private:
std::string m_Output;
std::vector<std::string> m_Depends;
cmCustomCommandLines m_CommandLines;
std::string m_Comment;
bool m_Used;
};
#endif