]> git.lyx.org Git - lyx.git/blob - src/lyx_sty.h
make doc++ able to generate the source documentation for lyx
[lyx.git] / src / lyx_sty.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  * 
5  *           LyX, The Document Processor
6  *        
7  *           Copyright 1995 Matthias Ettrich
8  *           Copyright 1995-2000 The LyX Team.
9  *
10  * ====================================================== */
11
12 #ifndef LYX_STY_H
13 #define LYX_STY_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "LString.h"
20
21 // This seems to be fixed now (JMarc)
22 //#ifdef WITH_WARNINGS
23 //#warning README!!
24 //#endif
25 // I suddenly began to get segfaults in guilsinglleft_def and had no clue
26 // on why this happened, then I tried a rewrite and added lyx_sty.C. Now
27 // the segfault has moved to bibcombox... It seems that we(or gcc) have a
28 // problem with static (non-pointer) objects , if someone knows why please
29 // tell me. I am using gcc 2.7.2.1 (Linux) and when IĀ get this segfault it
30 // always has to do with a static object of some kind... I tried to rewrite
31 // the objects causing the segfault, but the segfault then just moves to
32 // another object. I'll let some others have a look now... (Lgb)
33
34 // include this always
35 ///
36 extern string const lyx_def;
37 ///
38 extern string const lyxline_def;
39 ///
40 extern string const noun_def;
41 ///
42 extern string const lyxarrow_def;
43 ///
44 extern string const quotedblbase_def;
45 ///
46 extern string const quotesinglbase_def;
47 ///
48 extern string const guillemotleft_def;
49 ///
50 extern string const guillemotright_def;
51 ///
52 extern string const guilsinglleft_def;
53 ///
54 extern string const guilsinglright_def;
55 ///
56 extern string const paragraphindent_def;
57 ///
58 extern string const floatingfootnote_def;
59 ///
60 extern string const minipageindent_def;
61 ///
62 extern string const boldsymbol_def;
63 ///
64 extern string const binom_def;
65
66 #endif