File: thcmdline.h

package info (click to toggle)
therion 5.3.9-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 16,956 kB
  • sloc: ansic: 127,467; cpp: 89,790; tcl: 24,110; perl: 2,051; makefile: 1,003; asm: 201; python: 54; sh: 4
file content (120 lines) | stat: -rw-r--r-- 2,416 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/**
 * @file thcmdline.h
 * Command line processing module.
 */
  
/* Copyright (C) 2000 Stacho Mudrak
 * 
 * $Date: $
 * $RCSfile: $
 * $Revision: $
 *
 * -------------------------------------------------------------------- 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * --------------------------------------------------------------------
 */
 
#ifndef thcmdline_h
#define thcmdline_h


/**
 * Print states.
 */
 
enum {
  THPS_NONE = 1000,  ///< Nothing to query.
  THPS_ENCODINGS = 1001,  ///< Print encodings.
  THPS_INIT_FILE = 1002,  ///< Print init file.
  THPS_LIB_SRC = 1003,  ///< Print library source file
  THPS_XTHERION_SRC = 1004,  ///< Print point types list.
  THPS_PATHS = 1005,  ///< Print setting of all paths
  THPS_EXTERN_LIBS = 1006,  ///< Use extern libraries
  THPS_TEX_ENCODINGS = 1007,  ///< Print tex encodings
  THPS_SYMBOLS = 1008,  ///< Print symbols
};


/**
 * Command line processing class.
 *
 * Provides functions for therion command line options analysis.
 */

class thcmdline {

  public:

  bool version_ds,  ///< Version information display state.
    help_ds,  ///< Help display state.
    m_bezier,
    extern_libs;  ///< Use extern libs.
  int print_state;  ///< Query state.


  /**
   * Standard constructor.
   */
  
  thcmdline();
  
  
  /**
   * Standard destructor.
   */
   
  ~thcmdline();
  
  
  /**
   * Process given command line.
   */
   
  void process(int argc, char * argv[]);
  
  
  /**
   * Return version disp state.
   */
   
  bool get_version_disp_state();


  /**
   * Return help disp state.
   */
   
  bool get_help_disp_state();
  
  
  /**
   * Return print state.
   */
   
  int get_print_state();

};


/**
 * Command line processing module.
 */
 
extern thcmdline thcmdln;


#endif