lyx_mirror/src/trans_decl.h
Lars Gullik Bjønnes c80187fbfc remove out-commented code
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3150 a592a061-630c-0410-9148-cb99ea01b6c8
2001-12-05 08:50:13 +00:00

39 lines
502 B
C++

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