/* * TesselPoint.hpp * * Created on: Jul 30, 2010 * Author: heber */ #ifndef TESSELPOINT_HPP_ #define TESSELPOINT_HPP_ #include "atom_atominfo.hpp" #include "atom_particleinfo.hpp" class TesselPoint; class TesselPoint : public virtual ParticleInfo, public virtual AtomInfo { public: TesselPoint(); ~TesselPoint(); std::ostream & operator << (std::ostream &ost) const; }; std::ostream & operator << (std::ostream &ost, const TesselPoint &t); #endif /* TESSELPOINT_HPP_ */