mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
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
|