211a212,225
> class SingleStepEvent : public Event
> {
> protected:
> BaseRemoteGDB *gdb;
>
> public:
> SingleStepEvent(BaseRemoteGDB *g) : gdb(g)
> {}
>
> void process();
> };
>
> SingleStepEvent singleStepEvent;
>
215,216c229,230
< virtual void clearSingleStep() = 0;
< virtual void setSingleStep() = 0;
---
> void clearSingleStep();
> void setSingleStep();