//: C04:ProgVals.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Program values can be changed by command line #ifndef PROGVALS_H #define PROGVALS_H #include #include #include class ProgVals : public std::map { public: ProgVals(std::string defaults[][2], int sz); void parse(int argc, char* argv[], std::string usage, int offset = 1); void print(std::ostream& out = std::cout); }; #endif // PROGVALS_H ///:~