]> git.lyx.org Git - lyx.git/blob - src/mathed/macro_support.h
small cleanup, doxygen, formatting changes
[lyx.git] / src / mathed / macro_support.h
1 // -*- C++ -*-
2 #ifndef MACROSUPPORT_H
3 #define MACROSUPPORT_H
4
5 #include <iosfwd>
6
7 enum MathedMacroFlag {
8         MMF_Env = 1,
9         MMF_Exp = 2,
10         MMF_Edit = 4
11 };
12
13 extern
14 std::ostream & operator<<(std::ostream & o, MathedMacroFlag mmf);
15 #endif