/* * atom_particleinfo.hpp * * Created on: Oct 19, 2009 * Author: heber */ #ifndef ATOM_PARTICLEINFO_HPP_ #define ATOM_PARTICLEINFO_HPP_ using namespace std; /*********************************************** includes ***********************************/ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include /****************************************** forward declarations *****************************/ /********************************************** declarations *******************************/ class ParticleInfo { public: int nr; // index to easierly identify char *Name; // some name to reference to on output ParticleInfo(); ParticleInfo(ParticleInfo*); ~ParticleInfo(); ostream & operator << (ostream &ost) const; private: }; ostream & operator << (ostream &ost, const ParticleInfo &a); #endif /* ATOM_PARTICLEINFO_HPP_ */