summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Registry.hxx.in
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-09-16 13:08:40 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-09-16 13:08:40 (GMT)
commit30b67a8bfe2b27d5bbaa9169f85d6ca382602d53 (patch)
tree7a2774ddfce3d3c42b7e165fa51da51194ca8996 /Source/kwsys/Registry.hxx.in
parentdf4f999457eb8a881cdff960b5a0f725fbca2751 (diff)
downloadCMake-30b67a8bfe2b27d5bbaa9169f85d6ca382602d53.zip
CMake-30b67a8bfe2b27d5bbaa9169f85d6ca382602d53.tar.gz
CMake-30b67a8bfe2b27d5bbaa9169f85d6ca382602d53.tar.bz2
COMP: Win32 fixes
Diffstat (limited to 'Source/kwsys/Registry.hxx.in')
-rw-r--r--Source/kwsys/Registry.hxx.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/kwsys/Registry.hxx.in b/Source/kwsys/Registry.hxx.in
index 408534a..cc6df58 100644
--- a/Source/kwsys/Registry.hxx.in
+++ b/Source/kwsys/Registry.hxx.in
@@ -75,8 +75,8 @@ public:
// /etc/Project
void GlobalScopeOn() { this->SetGlobalScope(1); }
void GlobalScopeOff() { this->SetGlobalScope(0); }
- void SetGlobalScope(bool b) { m_GlobalScope = b; }
- bool GetGlobalScope() { return m_GlobalScope; }
+ void SetGlobalScope(bool b);
+ bool GetGlobalScope();
// Set or get the toplevel registry key.
void SetTopLevel(const char* tl);
@@ -102,7 +102,6 @@ private:
bool m_Opened;
bool m_Locked;
- bool m_GlobalScope;
}; // End Class: Registry
} // namespace @KWSYS_NAMESPACE@