lyx_mirror/src/trans_decl.h
Lars Gullik Bjønnes 797d87b451 make doc++ able to generate the source documentation for lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@956 a592a061-630c-0410-9148-cb99ea01b6c8
2000-08-07 20:58:24 +00:00

39 lines
513 B
C++

// -*- C++ -*-
#ifndef Trans_Decl_h
#define Trans_Decl_h
#include "LString.h"
#include "tex-accent.h"
///
struct Keyexc {
/// character to make exception
char c;
/// exception data
string data;
Keyexc * next;
/// Combination with another deadkey
bool combined;
/// The accent comined with
tex_accent accent;
};
///
typedef Keyexc * KmodException;
///
struct KmodInfo {
///
string data;
///
tex_accent accent;
///
string allowed;
///
KmodException exception_list;
///
KmodInfo();
};
#endif