mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 12:26:59 +00:00
14 lines
145 B
C
14 lines
145 B
C
|
#ifndef MATH_REPLACE_H
|
||
|
#define MATH_REPLACE_H
|
||
|
|
||
|
#include "math_data.h"
|
||
|
|
||
|
struct ReplaceData {
|
||
|
///
|
||
|
MathArray from;
|
||
|
///
|
||
|
MathArray to;
|
||
|
};
|
||
|
|
||
|
#endif
|