Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Exception.h 473B

12345678910111213141516171819202122232425262728
  1. /*!
  2. * \file include/Exception.h
  3. * \brief Custom global Exception
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _EXCEPTION_H_
  8. #define _EXCEPTION_H_
  9. #include <memory>
  10. #include <stdexcept>
  11. #include <string>
  12. class Exception : std::runtime_error {
  13. public:
  14. Exception(std::string what);
  15. static std::string getLastException();
  16. private:
  17. static std::string lastException;
  18. virtual void foo(); //!< We don't want to emit a vtable in every translation unit
  19. };
  20. #endif