/** * \file Atom.cpp \brief Simple atoms decorator. * * Copyright 2007-2013 IMP Inventors. All rights reserved. * */ #include #include #include IMPATOM_BEGIN_NAMESPACE IntKey Molecule::key() { static IntKey k("molecule tag"); return k; } void Molecule::show(std::ostream &out) const { out << "name: " << get_particle()->get_name(); } IMPATOM_END_NAMESPACE