diff options
author | Brad King <brad.king@kitware.com> | 2013-09-17 13:08:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-10-16 13:22:37 (GMT) |
commit | 53ded5951537cd776ed5d1db7b2002bb580583be (patch) | |
tree | 93972bf253d7e977af3bd5a382247ba14bb0d53c /Source/cmPropertyDefinition.h | |
parent | 0c39a757da4988467bfb870a8cba7339c72fe1a9 (diff) | |
download | CMake-53ded5951537cd776ed5d1db7b2002bb580583be.zip CMake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.gz CMake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.bz2 |
Drop unused builtin documentation APIs
Now that all DefineProperty documentation calls have been dropped, drop
the supporting APIs.
Diffstat (limited to 'Source/cmPropertyDefinition.h')
-rw-r--r-- | Source/cmPropertyDefinition.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmPropertyDefinition.h b/Source/cmPropertyDefinition.h index 296366d..1b6a7a6 100644 --- a/Source/cmPropertyDefinition.h +++ b/Source/cmPropertyDefinition.h @@ -30,22 +30,14 @@ public: void DefineProperty(const char *name, cmProperty::ScopeType scope, const char *ShortDescription, const char *FullDescription, - const char *DocumentationSection, bool chained); - /// Get the documentation string - cmDocumentationEntry GetDocumentation() const; - /// Default constructor cmPropertyDefinition() { this->Chained = false; }; /// Is the property chained? bool IsChained() const { return this->Chained; }; - /// Get the section if any - const std::string &GetDocumentationSection() const { - return this->DocumentationSection; }; - /// Get the scope cmProperty::ScopeType GetScope() const { return this->Scope; }; @@ -62,7 +54,6 @@ protected: std::string Name; std::string ShortDescription; std::string FullDescription; - std::string DocumentationSection; cmProperty::ScopeType Scope; bool Chained; }; |