doxygen: cmPropertyDefinition

This commit is contained in:
Yury G. Kudryashov 2012-02-28 17:05:54 +04:00
parent 2437b40933
commit 80072d4ebf
1 changed files with 23 additions and 12 deletions

View File

@ -14,45 +14,56 @@
#include "cmProperty.h" #include "cmProperty.h"
class cmPropertyDefinition /** \class cmPropertyDefinition
* \brief Property meta-information
*
* This class contains the following meta-information about property:
* - Name;
* - Various documentation strings;
* - The scope of the property;
* - If the property is chained.
*/
class cmPropertyDefinition
{ {
public: public:
// Define this property /// Define this property
void DefineProperty(const char *name, cmProperty::ScopeType scope, void DefineProperty(const char *name, cmProperty::ScopeType scope,
const char *ShortDescription, const char *ShortDescription,
const char *FullDescription, const char *FullDescription,
const char *DocumentationSection, const char *DocumentationSection,
bool chained); bool chained);
// get the documentation string /// Get the documentation string
cmDocumentationEntry GetDocumentation() const; cmDocumentationEntry GetDocumentation() const;
// basic constructor /// Default constructor
cmPropertyDefinition() { this->Chained = false; }; cmPropertyDefinition() { this->Chained = false; };
// is it chained? /// Is the property chained?
bool IsChained() {return this->Chained; }; bool IsChained() {return this->Chained; };
// Get the section if any /// Get the section if any
const std::string &GetDocumentationSection() const { const std::string &GetDocumentationSection() const {
return this->DocumentationSection; }; return this->DocumentationSection; };
// get the scope /// Get the scope
cmProperty::ScopeType GetScope() const { cmProperty::ScopeType GetScope() const {
return this->Scope; }; return this->Scope; };
// get the docs /// Get the documentation (short version)
const std::string &GetShortDescription() const { const std::string &GetShortDescription() const {
return this->ShortDescription; }; return this->ShortDescription; };
/// Get the documentation (full version)
const std::string &GetFullDescription() const { const std::string &GetFullDescription() const {
return this->FullDescription; }; return this->FullDescription; };
protected: protected:
std::string Name; std::string Name;
std::string ShortDescription; std::string ShortDescription;
std::string FullDescription; std::string FullDescription;
std::string DocumentationSection; std::string DocumentationSection;
cmProperty::ScopeType Scope; cmProperty::ScopeType Scope;
bool Chained; bool Chained;
}; };