1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2000-07-24 13:53:19 +00:00
|
|
|
|
/* This file is part of
|
2002-03-21 17:27:08 +00:00
|
|
|
|
* ======================================================
|
|
|
|
|
*
|
2000-07-24 13:53:19 +00:00
|
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2000-07-24 13:53:19 +00:00
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-07-24 13:53:19 +00:00
|
|
|
|
*
|
|
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
#ifndef LYX_STY_H
|
|
|
|
|
#define LYX_STY_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
|
|
// This seems to be fixed now (JMarc)
|
|
|
|
|
//#ifdef WITH_WARNINGS
|
|
|
|
|
//#warning README!!
|
|
|
|
|
//#endif
|
|
|
|
|
// I suddenly began to get segfaults in guilsinglleft_def and had no clue
|
|
|
|
|
// on why this happened, then I tried a rewrite and added lyx_sty.C. Now
|
|
|
|
|
// the segfault has moved to bibcombox... It seems that we(or gcc) have a
|
|
|
|
|
// problem with static (non-pointer) objects , if someone knows why please
|
|
|
|
|
// tell me. I am using gcc 2.7.2.1 (Linux) and when I<>get this segfault it
|
|
|
|
|
// always has to do with a static object of some kind... I tried to rewrite
|
|
|
|
|
// the objects causing the segfault, but the segfault then just moves to
|
|
|
|
|
// another object. I'll let some others have a look now... (Lgb)
|
|
|
|
|
|
|
|
|
|
// include this always
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const lyx_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const lyxline_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const noun_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const lyxarrow_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const quotedblbase_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const quotesinglbase_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const guillemotleft_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const guillemotright_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const guilsinglleft_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const guilsinglright_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const paragraphindent_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const floatingfootnote_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const minipageindent_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const boldsymbol_def;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
1999-10-02 16:21:10 +00:00
|
|
|
|
extern string const binom_def;
|
2002-03-04 11:10:26 +00:00
|
|
|
|
///
|
|
|
|
|
extern string const mathcircumflex_def;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#endif
|