lyx_mirror/src/trans_decl.h
Lars Gullik Bjønnes 5f3f9ad231 fixes because of SUN CC warnings, bmtable now compiled with C compilator, countChar should also work on CC now, read ChangeLog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@390 a592a061-630c-0410-9148-cb99ea01b6c8
1999-12-21 06:10:21 +00:00

32 lines
495 B
C++

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