⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getlongopt.h

📁 大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CHARMM并行计算。非常具有应用价值。
💻 H
字号:
/* $Id: GetLongOpt.h,v 2.2 2003/02/06 01:02:13 cljanss Exp $ *//* S Manoharan. Advanced Computer Research Institute. Lyon. France */#ifdef __GNUC__#pragma interface#endif#ifndef _GetLongOpt_h_#define _GetLongOpt_h_#include <iostream>#include <string.h>namespace sc {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, const char *valtoken, const char *nexttoken, const 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(std::ostream &outfile = std::cout) const;   void usage(const char *str)		{ ustring = str; }};}#endif /* _GetLongOpt_h_ */

⌨️ 快捷键说明

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