]> git.lyx.org Git - lyx.git/blob - src/trans_decl.h
another pesky \#warning snuck in
[lyx.git] / src / trans_decl.h
1 // -*- C++ -*-
2 #ifndef Trans_Decl_h
3 #define Trans_Decl_h
4
5 #include "LString.h"
6 #include "tex-accent.h"
7
8 ///
9 struct Keyexc {
10         /// character to make exception
11         char c;
12         /// exception data
13         string data;
14         Keyexc * next;
15         /// Combination with another deadkey
16         bool combined;
17         /// The accent comined with
18         tex_accent accent;
19 };
20
21 ///
22 typedef Keyexc * KmodException;
23
24 ///
25 struct KmodInfo {
26         ///
27         string data;
28         ///
29         tex_accent accent;
30         ///
31         string allowed;
32         ///
33         KmodException exception_list;
34         ///
35         KmodInfo();
36 };
37
38 #endif