File: trace.h

package info (click to toggle)
ctsim 4.5.2-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,536 kB
  • ctags: 3,720
  • sloc: cpp: 26,768; sh: 3,691; ansic: 1,254; perl: 296; makefile: 263
file content (79 lines) | stat: -rw-r--r-- 2,429 bytes parent folder | download | duplicates (2)
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
/*****************************************************************************
** FILE IDENTIFICATION
**
**      Name:         trace.h
**      Purpose:      Header file for Trace class
**      Author:       Kevin Rosenberg
**      Date Started: Oct 2000
**
**  This is part of the CTSim program
**  Copyright (c) 1983-2001 Kevin Rosenberg
**
**  $Id: trace.h 7061 2003-09-07 06:34:45Z kevin $
**
**  This program is free software; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License (version 2) as
**  published by the Free Software Foundation.
**
**  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 TRACE_H
#define TRACE_H


class Trace
{
 public:
    static const int TRACE_INVALID;
    static const int TRACE_NONE;
    static const int TRACE_CONSOLE;
    static const int TRACE_PHANTOM;
    static const int TRACE_PROJECTIONS;
    static const int TRACE_PLOT;
    static const int TRACE_CLIPPING;
    
    static const int BIT_CONSOLE;
    static const int BIT_PHANTOM;
    static const int BIT_PROJECTIONS;
    static const int BIT_PLOT;
    static const int BIT_CLIPPING;

  Trace (const char* const traceString);
  
  void addTrace (const char* const traceString);
  
  bool isTrace (const char* const traceQuery) const;
  
  int getTraceLevel(void) const { return m_traceLevel; }
  
  static int convertTraceNameToID (const char* traceName);
  static const char* convertTraceIDToTitle (int idTrace);
  static const char* convertTraceIDToName (int idTrace);
  
  static const int getTraceCount() {return s_iTraceCount;}
  static const char** getTraceNameArray() {return s_aszTraceName;}
  static const char** getTraceTitleArray() {return s_aszTraceTitle;}

 private:
  
  int m_traceLevel;
  
  bool addTraceElements (const char* const traceString);

  static const char* s_aszTraceName[];
  static const char* s_aszTraceTitle[];
  static const int s_iTraceCount;

};


#endif