pppc/Config.cc
2009-08-19 16:38:44 +00:00

20 lines
308 B
C++

#include "Config.h"
#include <iostream>
#include <string>
using namespace std;
Config::Entry::Entry(const string & name)
{
this->name = name;
pin = -1;
on_start = NONE;
on_exit = NONE;
on_lock = NONE;
on_unlock = NONE;
}
void Config::read(const char * file)
{
}