Renamed Logging.h to LoggingImpl.h

Added missing files to CMakeLists.txt
This commit is contained in:
David Williams 2015-05-08 21:18:10 +02:00
parent 09253a7bcc
commit c2bb64d055
5 changed files with 7 additions and 4 deletions

View File

@ -39,6 +39,7 @@ SET(CORE_INC_FILES
PolyVox/DefaultIsQuadNeeded.h PolyVox/DefaultIsQuadNeeded.h
PolyVox/DefaultMarchingCubesController.h PolyVox/DefaultMarchingCubesController.h
PolyVox/Density.h PolyVox/Density.h
PolyVox/Exceptions.h
PolyVox/FilePager.h PolyVox/FilePager.h
PolyVox/GradientEstimators.h PolyVox/GradientEstimators.h
PolyVox/GradientEstimators.inl PolyVox/GradientEstimators.inl
@ -79,10 +80,12 @@ SET(CORE_INC_FILES
) )
SET(IMPL_INC_FILES SET(IMPL_INC_FILES
PolyVox/Impl/Assertions.h
PolyVox/Impl/AStarPathfinderImpl.h PolyVox/Impl/AStarPathfinderImpl.h
PolyVox/Impl/Config.h PolyVox/Impl/Config.h
PolyVox/Impl/ErrorHandling.h PolyVox/Impl/ErrorHandling.h
PolyVox/Impl/Logging.h PolyVox/Impl/ExceptionsImpl.h
PolyVox/Impl/LoggingImpl.h
PolyVox/Impl/MarchingCubesTables.h PolyVox/Impl/MarchingCubesTables.h
PolyVox/Impl/PlatformDefinitions.h PolyVox/Impl/PlatformDefinitions.h
PolyVox/Impl/RandomUnitVectors.h PolyVox/Impl/RandomUnitVectors.h

View File

@ -25,7 +25,7 @@ distribution.
#define __PolyVox_Assertions_H__ #define __PolyVox_Assertions_H__
#include "PolyVox/Impl/Config.h" #include "PolyVox/Impl/Config.h"
#include "PolyVox/Impl/Logging.h" // Asserts can log when they fire. #include "PolyVox/Impl/LoggingImpl.h" // Asserts can log when they fire.
// The code below implements a custom assert function called POLYVOX_ASSERT which has a number of advantages compared // The code below implements a custom assert function called POLYVOX_ASSERT which has a number of advantages compared
// to the standard C/C++ assert(). It is inspired by http://cnicholson.net/2009/02/stupid-c-tricks-adventures-in-assert/ // to the standard C/C++ assert(). It is inspired by http://cnicholson.net/2009/02/stupid-c-tricks-adventures-in-assert/

View File

@ -27,6 +27,6 @@ freely, subject to the following restrictions:
#include "PolyVox/Impl/Assertions.h" #include "PolyVox/Impl/Assertions.h"
#include "PolyVox/Impl/ExceptionsImpl.h" #include "PolyVox/Impl/ExceptionsImpl.h"
#include "PolyVox/Impl/Logging.h" #include "PolyVox/Impl/LoggingImpl.h"
#endif //__PolyVox_ErrorHandling_H__ #endif //__PolyVox_ErrorHandling_H__

View File

@ -27,7 +27,7 @@ distribution.
#include "PolyVox/Exceptions.h" #include "PolyVox/Exceptions.h"
#include "PolyVox/Impl/Config.h" #include "PolyVox/Impl/Config.h"
#include "PolyVox/Impl/Logging.h" // Exceptions can log when they are thrown. #include "PolyVox/Impl/LoggingImpl.h" // Exceptions can log when they are thrown.
#include <cstdlib> // For std::exit #include <cstdlib> // For std::exit
#include <iostream> // For std::cerr #include <iostream> // For std::cerr