http://svn.greenstone.org/other-projects/trunk/gsinstaller/gsRegistry.h
|
Revision 11664, 1.2 kB
(checked in by mdewsnip, 3 years ago)
|
Fixed the line endings... for real this time, I hope.
|
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#ifndef _GSREGISTRY_H_ |
|---|
| 2 |
#define _GSREGISTRY_H_ |
|---|
| 3 |
#include <string> |
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
#if !defined (GSDL_NAMESPACE_BROKEN) |
|---|
| 7 |
#if defined(GSDL_USE_OBJECTSPACE) |
|---|
| 8 |
using namespace ospace::std; |
|---|
| 9 |
#else |
|---|
| 10 |
using namespace std; |
|---|
| 11 |
#endif |
|---|
| 12 |
#endif |
|---|
| 13 |
|
|---|
| 14 |
#include "registry.h" |
|---|
| 15 |
#include "configFile.h" |
|---|
| 16 |
#include "FilePath.h" |
|---|
| 17 |
#include "uninstall.h" |
|---|
| 18 |
#include "stringArray.h" |
|---|
| 19 |
|
|---|
| 20 |
class gsRegistry : public installAgent |
|---|
| 21 |
{ private: |
|---|
| 22 |
string volumeKey; |
|---|
| 23 |
string collectKey; |
|---|
| 24 |
|
|---|
| 25 |
bool logAction(string action, HKEY base, string path, string item, string value); |
|---|
| 26 |
bool ensureParentKeyExists( HKEY base, string key); |
|---|
| 27 |
public: |
|---|
| 28 |
gsRegistry(installManager &manager, configureFile &configFileb); |
|---|
| 29 |
bool storeKeyString( HKEY base, string path, string item, string value); |
|---|
| 30 |
bool collectionInstalled(); |
|---|
| 31 |
bool volumeInstalled(); |
|---|
| 32 |
bool ensureKeysExist(); |
|---|
| 33 |
bool ensureKeyExists( HKEY base, string key); |
|---|
| 34 |
bool destroyKey(HKEY base, string key); |
|---|
| 35 |
bool destroyItem(HKEY base, string key, string name); |
|---|
| 36 |
string collectKeyId(); |
|---|
| 37 |
string volumeKeyId(); |
|---|
| 38 |
string exeKeyId(string exeName); |
|---|
| 39 |
string uninstallKeyId(string collectName); |
|---|
| 40 |
FilePath *collectionPath(); |
|---|
| 41 |
bool undoAction(string ActionName, stringArray ¶ms); |
|---|
| 42 |
|
|---|
| 43 |
}; |
|---|
| 44 |
#endif |
|---|
| 45 |
|
|---|