File: regstorage.h

package info (click to toggle)
einstein 2.0.dfsg.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,164 kB
  • ctags: 1,652
  • sloc: cpp: 10,429; makefile: 118; sh: 1
file content (32 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef __REGSTORAGE_H__
#define __REGSTORAGE_H__
#ifdef WIN32                    // Win32 only


#include <windows.h>
#include "storage.h"


class RegistryStorage: public Storage
{
    private:
        HKEY globalKey;
        HKEY userKey;

    public:
        RegistryStorage();
        virtual ~RegistryStorage();

    public:
        virtual int get(const std::wstring &name, int dflt) ;
        virtual std::wstring get(const std::wstring &name, 
                const std::wstring &dflt);
        virtual void set(const std::wstring &name, int value);
        virtual void set(const std::wstring &name, const std::wstring &value);
        virtual void flush() { };
};


#endif
#endif