#ifndef __REGISTRY_H__
#define __REGISTRY_H__

#include <windows.h>
#include <string>

using namespace std;

class Registry {
public:
	Registry();
	virtual ~Registry();

	bool SaveString(HKEY hKey, string sPath, string sValue, string sData);
	string ReadString(HKEY hKey, string sPath, string sValue);
	bool SaveLong(HKEY hKey, string sPath, string sValue, long lData);
	unsigned long ReadLong(HKEY hKey, string sPath, string sValue);
};

#endif // __REGISTRY_H__
