summaryrefslogtreecommitdiff
path: root/netfs/fuse/fuseConfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/fuse/fuseConfig.h')
-rw-r--r--netfs/fuse/fuseConfig.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/netfs/fuse/fuseConfig.h b/netfs/fuse/fuseConfig.h
deleted file mode 100644
index 32f25b4..0000000
--- a/netfs/fuse/fuseConfig.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef FUSECONFIG_H
-#define FUSECONFIG_H
-
-#include <string>
-#include <map>
-#include <set>
-#include <IceUtil/Shared.h>
-#include "xml.h"
-
-class FuseConfig : public IceUtil::Shared {
- public:
- class Export;
- typedef IceUtil::Handle<Export> ExportPtr;
- typedef std::map<std::string, ExportPtr> ExportMap;
- class Export : public IceUtil::Shared {
- public:
- typedef std::set<std::string> Endpoints;
- Export(xmlNodePtr);
-
- std::string name;
- Endpoints endpoints;
- };
-
- FuseConfig(xmlNodePtr);
- static IceUtil::Handle<FuseConfig> Load(const std::string & path);
-
- ExportMap exports;
-};
-typedef IceUtil::Handle<FuseConfig> FuseConfigPtr;
-
-#endif
-
-