Graine
Génération procédurale de créatures et apprentissage par réseaux de neurones.
NotEnoughBrainException.hpp
Go to the documentation of this file.
1 #ifndef NOT_ENOUGH_BRAIN_EXCEPTION
2 #define NOT_ENOUGH_BRAIN_EXCEPTION
3 
4  #include <exception>
5  #include <string>
6 
7  using namespace std;
8 
9  class NotEnoughBrainException: public exception
10  {
11 
12  private:
13  string message;
14 
15  public:
16 
17  NotEnoughBrainException(string const& phrase="") throw();
18  virtual ~NotEnoughBrainException() throw();
19 
20  virtual const char* what() const throw();
21  };
22 
23 #endif
Definition: NotEnoughBrainException.hpp:9