// // C++ Implementation: statestartlangelem // // Description: // // // Author: Lorenzo Bettini , (C) 2004 // // Copyright: See COPYING file that comes with this distribution // // #include "statestartlangelem.h" using std::string; StateStartLangElem::StateStartLangElem(const string &n, bool exit, bool all) : LangElem(n), exit(exit), exit_all(all), statelangelem(0) { } StateStartLangElem::~StateStartLangElem() { } const std::string StateStartLangElem::toString() const { string res = LangElem::toString(); return res; }