// -*- C++ -*- #ifndef MATH_ATOM_H #define MATH_ATOM_H #ifdef __GNUG__ #pragma interface #endif /** The 'atom' is the major blob in math typesetting. And 'atom' consists of a nucleus, an optional superscript, and an optional subscript. Exactly where the subscript and superscript are drawn depends on the size, and type, of the nucleus they are attached to. Jules */ class MathInset; class MathAtom { public: /// MathAtom(); /// MathAtom(MathAtom const &); /// explicit MathAtom(MathInset * p); /// virtual ~MathAtom(); /// void operator=(MathAtom const &); /// MathInset * nucleus() const; /// MathInset * operator->() const; private: /// MathInset * nucleus_; /// raw copy void copy(MathAtom const & p); /// raw destruction void done(); }; #endif