#ifndef _TRASH_H_ #define _TRASH_H_ #include #include "Pos.h" #include "WEvent.h" template void trash(T*); class Trash { public: static void cleanup(); }; template class TrashBin { std::vector bin; void put_out(); int receiveEvent(WEvent* e); template friend void trash(Q*); friend class Trash; }; #endif // _TRASH_H_