00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00026 #ifndef OW32_XHKEY_H
00027 #define OW32_XHKEY_H
00028
00029 #include <OW32/OW32Libs.h>
00030 #include <OW32/windows.h>
00031
00032 namespace OW32
00033 {
00034
00036 class OW32_LIB_EXPORT XHKEY
00037 {
00038 private:
00039 HKEY m_hKey;
00040
00041 XHKEY(const XHKEY& );
00042 XHKEY& operator=(const XHKEY& );
00043
00044 public:
00046 XHKEY() : m_hKey(NULL) {}
00047
00049 XHKEY(HKEY h) : m_hKey(h) { }
00050
00052 ~XHKEY() {
00053 Close();
00054 }
00055
00057 void Close() {
00058 if (m_hKey != NULL) {
00059 RegCloseKey(m_hKey);
00060 m_hKey = NULL;
00061 }
00062 }
00063
00065 operator HKEY() const { return m_hKey; }
00066
00068 HKEY* operator&() { return &m_hKey; }
00069
00071 HKEY operator=(HKEY h) { Close(); m_hKey = h; return m_hKey; }
00072
00074 HKEY Detach() { HKEY h = m_hKey; m_hKey = NULL; return h; }
00075 };
00076
00077 }
00078
00079 #endif // OW32_XHKEY_H