| 277 | #endif // HAVE_LOG |
| 278 | |
| 279 | SymbolAtom::SymbolAtom(const string& name, int type, bool del) : _unicode(0) { |
| 280 | _name = name; |
| 281 | _type = type; |
| 282 | if (type == TYPE_BIG_OPERATOR) _typelimits = SCRIPT_NORMAL; |
| 283 | |
| 284 | _delimiter = del; |
| 285 | } |
| 286 | |
| 287 | sptr<Box> SymbolAtom::createBox(_out_ TeXEnvironment& env) { |
| 288 | auto i = env.getTeXFont(); |
nothing calls this directly
no outgoing calls
no test coverage detected