remove_man.hh 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef REMOVE_MAN_HH
  9. #define REMOVE_MAN_HH
  10. #include "init/init.hh"
  11. class g1_object_class;
  12. class g1_remove_manager_class : public i4_init_class
  13. {
  14. g1_object_class **remove_list;
  15. int removes;
  16. friend class g1_map_class;
  17. virtual void init();
  18. virtual void uninit();
  19. public:
  20. void process_requests();
  21. void request_remove(g1_object_class *obj);
  22. };
  23. extern g1_remove_manager_class g1_remove_man;
  24. #endif
  25. //{{{ Emacs Locals
  26. // Local Variables:
  27. // folded-file: t
  28. // End:
  29. //}}}