// Pref.cpp: implementation of the CPref class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "dashboard.h"
#include "Pref.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPref::CPref(char* filename)
{
	prefFile = fopen(filename,"rw");
}

CPref::~CPref()
{

}

void CPref::getPref(char* tag, void* v);
void CPref::setPref(char* tag, char* type, void* v);