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 
~string_list_definition()16 string_list_definition::~string_list_definition() {}
action(processor &,const char * text)17 void string_list_definition::action(processor &, const char * text)
18 {
19 	value_list.push_back(text);
20 }
21