// $Id: BreakPoint.cc 5854 2006-11-06 18:24:21Z m9710797 $ #include "BreakPoint.hh" #include "TclObject.hh" namespace openmsx { unsigned BreakPoint::lastId = 0; BreakPoint::BreakPoint(MSXCliComm& cliComm, word address_, std::auto_ptr command, std::auto_ptr condition) : BreakPointBase(cliComm, command, condition) , address(address_) { id = ++lastId; } word BreakPoint::getAddress() const { return address; } unsigned BreakPoint::getId() const { return id; } } // namespace openmsx