summaryrefslogtreecommitdiffstats
path: root/src/MountArray.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/MountArray.h')
-rw-r--r--src/MountArray.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/MountArray.h b/src/MountArray.h
new file mode 100644
index 0000000..39b588d
--- a/dev/null
+++ b/src/MountArray.h
@@ -0,0 +1,31 @@
+//
+// File: MountArray.h
+// Created by: User <Email>
+// Created on: Mon Dec 29 16:04:15 2003
+//
+
+#ifndef _MOUNTARRAY_H_
+#define _MOUNTARRAY_H_
+#include <strings.h>
+#include <string>
+#include "Constants.h"
+using namespace std;
+
+class MountArray
+{
+public:
+ MountArray (BOOL);
+ ~MountArray ();
+
+ // MountArray interface
+ string **MountArr;
+ int MountCount;
+ BOOL MountCheck (string &);
+
+protected:
+ // MountArray variables
+
+};
+
+
+#endif //_MOUNTARRAY_H_