/* * GLMoleculeObject_atom.hpp * * Created on: Aug 17, 2011 * Author: heber */ #ifndef GLMOLECULEOBJECT_ATOM_HPP_ #define GLMOLECULEOBJECT_ATOM_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "GLMoleculeObject.hpp" class atom; class GLMoleculeObject_atom : public GLMoleculeObject { Q_OBJECT public: GLMoleculeObject_atom(QObject *parent, const atom *atomref); ~GLMoleculeObject_atom() {} private: atom *_atom; }; #endif /* GLMOLECULEOBJECT_ATOM_HPP_ */