progvals.h

来自「Think in C++ 第二版源码」· C头文件 代码 · 共 22 行

H
22
字号
//: C20:ProgVals.h

// From Thinking in C++, 2nd Edition

// Available at http://www.BruceEckel.com

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

// Program values can be changed by command line

#ifndef PROGVALS_H

#define PROGVALS_H

#include <map>

#include <iostream>

#include <string>



class ProgVals 

  : public std::map<std::string, std::string> {

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 ///:~

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?