lyx_mirror/src/trans_decl.h
Lars Gullik Bjønnes efe0b0b8eb Dispatch->dispatch, some trans work
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2254 a592a061-630c-0410-9148-cb99ea01b6c8
2001-07-16 15:42:57 +00:00

51 lines
625 B
C++

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