lyx_mirror/src/trans_decl.h

39 lines
513 B
C
Raw Normal View History

// -*- 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