mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Drop unused builtin documentation APIs
Now that all DefineProperty documentation calls have been dropped, drop the supporting APIs.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user