]> git.tdb.fi Git - builder.git/blob - source/option.cpp
Code reorganizing and cleanup
[builder.git] / source / option.cpp
1 #include "option.h"
2
3 using namespace std;
4
5 Option::Option(const string &n, const string &v, const string &d):
6         name(n),
7         defv(v),
8         descr(d),
9         value(v)
10 { }