1 /* COPYING ******************************************************************
2 For copyright and licensing terms, see the file named COPYING.
3 // **************************************************************************
4 */
5 
6 #include <iostream>
7 #include <iomanip>
8 #include <cstring>
9 #include <cstdlib>
10 #include <cctype>
11 
12 #include "popt.h"
13 
14 using namespace popt;
15 
processor(const char * n,definition & d,std::vector<const char * > & f)16 processor::processor(const char * n, definition & d, std::vector<const char *> & f) :
17 	file_vector(f), name(n), slash(0), def(d), is_stopped(false)
18 {
19 }
~definition()20 definition::~definition() {}
21