#ifndef MICROTEX_BOX_FACTORY_H #define MICROTEX_BOX_FACTORY_H #include "atom/atom.h" namespace microtex { class SymbolAtom; /** Create a horizontal delimiter with given symbol and size */ sptr createHDelim(const sptr& sym, Env& env, int size); /** Create a vertical delimiter with given symbol and size */ sptr createVDelim(const sptr& sym, Env& env, int size); /** Create a horizontal delimiter with given symbol and width */ sptr createHDelim(const std::string& sym, Env& env, float width, bool round = false); /** Create a vertical delimiter with given symbol and height */ sptr createVDelim(const std::string& sym, Env& env, float height, bool round = false); } // namespace microtex #endif // MICROTEX_BOX_FACTORY_H