getlongo.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 53 行

H
53
字号
/* $Id: GETLONGO.H 1.1 93/03/02 13:00:48 Anthony_Scian Exp $ */
/* S Manoharan. Advanced Computer Research Institute. Lyon. France */

#ifndef _GetLongOpt_h_
#define _GetLongOpt_h_

#include <iostream.h>
#include <string.h>

class GetLongOpt {
public:
   enum OptType { 
      NoValue, OptionalValue, MandatoryValue
   };
private:
   struct Cell {
      const char *option;	// option name
      OptType type;		// option type
      const char *description;	// a description of option
      const char *value;	// value of option (string)
      Cell *next;		// pointer to the next cell

      Cell() { option = description = value = 0; next = 0; }
   };
private:
  Cell *table;				// option table
  const char *ustring;			// usage message
  char *pname;				// program basename
  char optmarker;			// option marker

  int enroll_done;			// finished enrolling
  Cell *last;				// last entry in option table 

private:
  char *basename(char * const p) const;
  int setcell(Cell *c, char *valtoken, char *nexttoken, char *p);
public:
   GetLongOpt(const char optmark = '-');
   ~GetLongOpt();

   int parse(int argc, char * const *argv);
   int parse(char * const str, char * const p);

   int enroll(const char * const opt, const OptType t,
      const char * const desc, const char * const val);
   const char *retrieve(const char * const opt) const;

   void usage(ostream &outfile = cout) const;
   void usage(const char *str)		{ ustring = str; }
};

#endif /* _GetLongOpt_h_ */

⌨️ 快捷键说明

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