mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
ff9b02aaba
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3136 a592a061-630c-0410-9148-cb99ea01b6c8
17 lines
293 B
C++
17 lines
293 B
C++
// -*- C++ -*-
|
|
|
|
#ifndef LENGHT_COMMON_H
|
|
#define LENGHT_COMMON_H
|
|
|
|
#include "LString.h"
|
|
#include "lyxlength.h"
|
|
|
|
extern int const num_units;
|
|
|
|
// I am not sure if "mu" should be possible to select (Lgb)
|
|
extern char const *unit_name[];
|
|
|
|
LyXLength::UNIT unitFromString(string const & data);
|
|
|
|
#endif
|