]> git.lyx.org Git - lyx.git/blob - src/trans_decl.h
remove mention of lyxrc from the splash
[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 #include <list>
9
10
11 ///
12 struct Keyexc {
13         /// character to make exception
14         char c;
15         /// exception data
16         string data;
17         /// Combination with another deadkey
18         bool combined;
19         /// The accent comined with
20         tex_accent accent;
21 };
22
23 ///
24 typedef std::list<Keyexc> KmodException;
25
26 ///
27 struct KmodInfo {
28         ///
29         string data;
30         ///
31         tex_accent accent;
32         ///
33         KmodException exception_list;
34         ///
35         KmodInfo();
36 };
37
38 #endif