summaryrefslogtreecommitdiffstats
path: root/src/Cnfg.h
blob: 55476df9f7cc11456b1bab61cba4602a918394c5 (plain)
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
//
// File: Cnfg.h
// Created by: User <Email>
// Created on: Sat Jan  3 13:49:21 2004
//

#ifndef _CNFG_H_
#define _CNFG_H_
#include "Constants.h"
using namespace std;


class Cnfg
{
public:
	Cnfg (int, char **, string &);
	~Cnfg ();

	BOOL RecurseMounts;
	BOOL Success;
	string Error;
protected:
};


#endif //_CNFG_H_