director.swg 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* -----------------------------------------------------------------------------
  2. * director.swg
  3. *
  4. * This file contains support for director classes so that C# proxy
  5. * methods can be called from C++.
  6. * ----------------------------------------------------------------------------- */
  7. #if defined(DEBUG_DIRECTOR_OWNED)
  8. #include <iostream>
  9. #endif
  10. #include <string>
  11. #include <exception>
  12. namespace Swig {
  13. /* Director base class - not currently used in C# directors */
  14. class Director {
  15. };
  16. /* Base class for director exceptions */
  17. class DirectorException : public std::exception {
  18. protected:
  19. std::string swig_msg;
  20. public:
  21. DirectorException(const char *msg) : swig_msg(msg) {
  22. }
  23. DirectorException(const std::string &msg) : swig_msg(msg) {
  24. }
  25. virtual ~DirectorException() throw() {
  26. }
  27. const char *what() const throw() {
  28. return swig_msg.c_str();
  29. }
  30. };
  31. /* Pure virtual method exception */
  32. class DirectorPureVirtualException : public DirectorException {
  33. public:
  34. DirectorPureVirtualException(const char *msg) : DirectorException(std::string("Attempt to invoke pure virtual method ") + msg) {
  35. }
  36. };
  37. }