git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@50 8131a0b2-b21c-1c47-bd6a-f003126495bd
20 lines
308 B
C++
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)
|
|
{
|
|
}
|