diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-11 14:29:56 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-11 14:29:56 (GMT) |
commit | dc9245df6cbe4ed6211387f6090b531ce4414263 (patch) | |
tree | b22a893cd7b52a64a86663c0e164e1d63ec9119f /Source/cmake.h | |
parent | 9d4730f4413a216e8172aa4a24705a388d36f076 (diff) | |
download | CMake-dc9245df6cbe4ed6211387f6090b531ce4414263.zip CMake-dc9245df6cbe4ed6211387f6090b531ce4414263.tar.gz CMake-dc9245df6cbe4ed6211387f6090b531ce4414263.tar.bz2 |
ENH: add enum to IssueMessage
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index c7ed21c..b8ca27f 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -58,6 +58,13 @@ class cmPolicies; class cmake { public: + enum MessageType + { AUTHOR_WARNING, + FATAL_ERROR, + MESSAGE, + WARNING, + LOG + }; typedef std::map<cmStdString, cmCommand*> RegisteredCommandsMap; ///! construct an instance of cmake |