lyx_mirror/src/mathed/macro_support.h

16 lines
230 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MACROSUPPORT_H
#define MACROSUPPORT_H
#include <iosfwd>
enum MathedMacroFlag {
MMF_Env = 1,
MMF_Exp = 2,
MMF_Edit = 4
};
extern
std::ostream & operator<<(std::ostream & o, MathedMacroFlag mmf);
#endif