#ifndef PAIR_H #define PAIR_H #include #include #define MAXLEN 1024 class NameValuePair { public: NameValuePair(string n, string v); ~NameValuePair(); string GetName(); string GetValue(); private: string Name; string Value; }; #endif // PAIR_H