summaryrefslogtreecommitdiff
path: root/Source/cmProperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmProperty.h')
-rw-r--r--Source/cmProperty.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/Source/cmProperty.h b/Source/cmProperty.h
index e026372db5..1736136ef2 100644
--- a/Source/cmProperty.h
+++ b/Source/cmProperty.h
@@ -17,17 +17,27 @@
class cmProperty
{
public:
- enum ScopeType { TARGET, SOURCE_FILE, DIRECTORY, GLOBAL, CACHE,
- TEST, VARIABLE, CACHED_VARIABLE, INSTALL };
+ enum ScopeType
+ {
+ TARGET,
+ SOURCE_FILE,
+ DIRECTORY,
+ GLOBAL,
+ CACHE,
+ TEST,
+ VARIABLE,
+ CACHED_VARIABLE,
+ INSTALL
+ };
// set this property
- void Set(const char *value);
+ void Set(const char* value);
// append to this property
- void Append(const char *value, bool asString = false);
+ void Append(const char* value, bool asString = false);
// get the value
- const char *GetValue() const;
+ const char* GetValue() const;
// construct with the value not set
cmProperty() { this->ValueHasBeenSet = false; }