Changeset 407 in Sophya for trunk/Poubelle/archTOI.old/archtoi.h
- Timestamp:
- Sep 18, 1999, 2:08:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Poubelle/archTOI.old/archtoi.h
r359 r407 14 14 using namespace std; 15 15 16 class ArchTOI {16 class ArchTOI : public RequestHandler { 17 17 public: 18 18 ArchTOI(istream& str); … … 24 24 enum flg {hasflag = 1, 25 25 useNA = 2}; 26 27 virtual bool processTOIReq(string line, string toiname, TOIKind toi, int index, 28 bool interp, bool repet, bool flag, bool notrig); 29 virtual bool processOption(string keyw, string args); 26 30 27 31 protected: 28 32 void init(); 29 void readReq(istream& str);30 bool processOption(string line); // false when #END : stop processing...31 void processTOIReq(string line);32 33 TOISvr svr; 33 34 list<string> headertoi; … … 61 62 int fitsLine; 62 63 ostream* ostr; 64 65 string requestVersion; 66 list<string> comments; 63 67 }; 64 68 65 #define ARCHTOI_VERS "1.0" 69 #define ARCHTOI_VERS "1.1" 70 #define ARCHTOI_TAG "notag" 66 71 67 72 #endif
Note:
See TracChangeset
for help on using the changeset viewer.