summaryrefslogtreecommitdiff
path: root/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx')
-rw-r--r--setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx b/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx
index 1f4df3353359..48bfcea9b605 100644
--- a/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx
+++ b/setup_native/source/win32/customactions/reg4msdoc/registryvalueimpl.hxx
@@ -9,7 +9,7 @@
#include <memory>
#include <string>
-class RegistryValueImpl
+class RegistryValueImpl
{
public:
@@ -22,7 +22,7 @@ public:
RegistryValueImpl(const std::wstring& Name, const std::wstring& Value);
RegistryValueImpl(const std::wstring& Name, const std::string& Value);
-
+
#if (_MSC_VER >= 1300)
RegistryValueImpl::RegistryValueImpl(const RegistryValueImpl& s);
#endif
@@ -53,7 +53,7 @@ public:
@precond GetType = STRING
*/
std::wstring GetDataAsUniString() const;
-
+
/** Returns the data as ansi string
@precond GetType = STRING
@@ -61,7 +61,7 @@ public:
std::string GetDataAsAnsiString() const;
/** Returns the data as number
-
+
@precond GetType = NUMBER
*/
int GetDataAsInt() const;
@@ -73,13 +73,13 @@ public:
//#################################
// Command
//#################################
+
-
- /** Set a new name
+ /** Set a new name
*/
void SetName(const std::wstring& NewName);
- /**
+ /**
*/
void SetValue(const std::wstring& NewValue);
@@ -96,16 +96,16 @@ public:
//#################################
private:
- std::wstring m_Name;
- int m_Type;
- std::wstring m_StringData;
- int m_IntData;
+ std::wstring m_Name;
+ int m_Type;
+ std::wstring m_StringData;
+ int m_IntData;
};
typedef std::auto_ptr<RegistryValueImpl> RegistryValue;
-#endif
+#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */