From a4298b95fa971630ba21926e101a7fa4ee7ddb47 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 2 Jun 2018 13:53:58 +0000 Subject: [Travis] Rebuilding documentation --- exception_8h_source.html | 47 ++++++++++++++++++++++------------------------- 1 file changed, 22 insertions(+), 25 deletions(-) (limited to 'exception_8h_source.html') diff --git a/exception_8h_source.html b/exception_8h_source.html index eeb051e3..730d0b83 100644 --- a/exception_8h_source.html +++ b/exception_8h_source.html @@ -90,36 +90,33 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
exception.h
-Go to the documentation of this file.
1 #ifndef YAGE_CORE_EXCEPTION_H
-
2 #define YAGE_CORE_EXCEPTION_H
-
3 
-
4 #include <stdexcept>
-
5 #include <sstream>
-
6 
-
7 namespace yage
-
8 {
-
9 
-
10 class FileLoadException : public std::runtime_error
-
11 {
-
12 public:
-
13  FileLoadException(std::string err);
-
14 
-
15  virtual const char *what() const throw();
-
16 
-
17 private:
-
18  std::string err_msg;
-
19 };
-
20 
-
21 } // namespace yage
-
22 
-
23 #endif
-
Definition: exception.h:10
+Go to the documentation of this file.
1 #pragma once
+
2 
+
3 #include <stdexcept>
+
4 #include <sstream>
+
5 
+
6 namespace yage
+
7 {
+
8 
+
9 class FileLoadException : public std::runtime_error
+
10 {
+
11 public:
+
12  FileLoadException(std::string err);
+
13 
+
14  virtual const char *what() const throw();
+
15 
+
16 private:
+
17  std::string err_msg;
+
18 };
+
19 
+
20 } // namespace yage
+
Definition: exception.h:9
FileLoadException(std::string err)
Definition: exception.cpp:6
virtual const char * what() const
Definition: exception.cpp:15
-- cgit