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_pair_definition()16 string_pair_definition::~string_pair_definition() {}
action(processor &,const char * text1,const char * text2)17 void string_pair_definition::action(processor &, const char * text1, const char * text2)
18 {
19 	value1 = text1;
20 	value2 = text2;
21 }
22