forked from geo-data/cesium-terrain-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This better reflects the specificity of the tools and library.
- Loading branch information
Homme Zwaagstra
committed
Jul 11, 2014
1 parent
d821b96
commit 0016b95
Showing
36 changed files
with
221 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Libterrain documentation | ||
|
||
[Doxygen](http://www.doxygen.org) documentation for the C++ libterrain code can | ||
[Doxygen](http://www.doxygen.org) documentation for the C++ libctb code can | ||
be generated by running the `doxygen` command from this | ||
directory. Documentation in various formats is then generated in this directory | ||
e.g. HTML format in the `html` directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#ifndef TERRAINEXCEPTION_HPP | ||
#define TERRAINEXCEPTION_HPP | ||
#ifndef CTBEXCEPTION_HPP | ||
#define CTBEXCEPTION_HPP | ||
|
||
/******************************************************************************* | ||
* Copyright 2014 GeoData <[email protected]> | ||
|
@@ -18,24 +18,24 @@ | |
*******************************************************************************/ | ||
|
||
/** | ||
* @file TerrainException.hpp | ||
* @brief This declares and defines the `TerrainException` class | ||
* @file CTBException.hpp | ||
* @brief This declares and defines the `CTBException` class | ||
*/ | ||
|
||
#include <stdexcept> | ||
|
||
namespace terrain { | ||
class TerrainException; | ||
namespace ctb { | ||
class CTBException; | ||
} | ||
|
||
/// This represents a terrain runtime error | ||
class terrain::TerrainException: | ||
/// This represents a CTB runtime error | ||
class ctb::CTBException: | ||
public std::runtime_error | ||
{ | ||
public: | ||
TerrainException(const char *message): | ||
CTBException(const char *message): | ||
std::runtime_error(message) | ||
{} | ||
}; | ||
|
||
#endif /* TERRAINEXCEPTION_HPP */ | ||
#endif /* CTBEXCEPTION_HPP */ |
Oops, something went wrong.