File: thsymbolsets.h

package info (click to toggle)
therion 0.3.10-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,840 kB
  • ctags: 5,417
  • sloc: cpp: 46,983; tcl: 17,383; ansic: 9,055; perl: 1,680; makefile: 728; asm: 152; sh: 12
file content (35 lines) | stat: -rw-r--r-- 556 bytes parent folder | download
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
#ifndef thsymbolsets_h
#define thsymbolsets_h

#include "thsymbolsetlist.h"

#include <map>

#include <string>


#define thsymsets_size 5

extern int thsymsets_symbols [thsymbolset_size][thsymsets_size];

extern int thsymsets_figure [thsymbolset_size][thsymsets_size+1];

extern int thsymsets_order[thsymbolset_size];

extern int thsymsets_count[thsymsets_size];

extern std::map<unsigned, std::string> thsymsets_comment;


static const thsymbolset__char_ptr thsymsets [] = {
"ASF",
"CCNP",
"SKBB",
"SM",
"UIS",
};

void thsymsets_symbols_init();

#endif