Moved headers into subdirectories.
This commit is contained in:
@ -9,10 +9,10 @@ SET(UTIL_SRC_FILES
|
||||
|
||||
#Projects headers files
|
||||
SET(UTIL_INC_FILES
|
||||
include/Serialization.h
|
||||
include/Serialization.inl
|
||||
include/VolumeChangeTracker.h
|
||||
include/VolumeChangeTracker.inl
|
||||
include/PolyVoxUtil/Serialization.h
|
||||
include/PolyVoxUtil/Serialization.inl
|
||||
include/PolyVoxUtil/VolumeChangeTracker.h
|
||||
include/PolyVoxUtil/VolumeChangeTracker.inl
|
||||
)
|
||||
|
||||
ADD_DEFINITIONS(-DPOLYVOX_SHARED_EXPORTS) #Export symbols in the .dll
|
||||
|
@ -24,8 +24,8 @@ freely, subject to the following restrictions:
|
||||
#ifndef __PolyVox_Serialization_H__
|
||||
#define __PolyVox_Serialization_H__
|
||||
|
||||
#include "PolyVoxForwardDeclarations.h"
|
||||
#include "Region.h"
|
||||
#include "PolyVoxCore/PolyVoxForwardDeclarations.h"
|
||||
#include "PolyVoxCore/Region.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
@ -66,6 +66,6 @@ namespace PolyVox
|
||||
bool saveVersion0(std::ostream& stream, VolumeType<VoxelType>& volume, VolumeSerializationProgressListener* progressListener = 0);
|
||||
}
|
||||
|
||||
#include "Serialization.inl"
|
||||
#include "PolyVoxUtil/Serialization.inl"
|
||||
|
||||
#endif
|
@ -26,8 +26,8 @@ freely, subject to the following restrictions:
|
||||
|
||||
#include <list>
|
||||
|
||||
#include "PolyVoxForwardDeclarations.h"
|
||||
#include "Region.h"
|
||||
#include "PolyVoxCore/PolyVoxForwardDeclarations.h"
|
||||
#include "PolyVoxCore/Region.h"
|
||||
|
||||
namespace PolyVox
|
||||
{
|
||||
@ -76,6 +76,6 @@ namespace PolyVox
|
||||
};
|
||||
}
|
||||
|
||||
#include "VolumeChangeTracker.inl"
|
||||
#include "PolyVoxUtil/VolumeChangeTracker.inl"
|
||||
|
||||
#endif
|
@ -21,15 +21,13 @@ freely, subject to the following restrictions:
|
||||
distribution.
|
||||
*******************************************************************************/
|
||||
|
||||
#include "VolumeChangeTracker.h"
|
||||
|
||||
#include "GradientEstimators.h"
|
||||
#include "SurfaceMesh.h"
|
||||
#include "PolyVoxCore/GradientEstimators.h"
|
||||
#include "PolyVoxCore/SurfaceMesh.h"
|
||||
#include "PolyVoxImpl/MarchingCubesTables.h"
|
||||
#include "VertexTypes.h"
|
||||
#include "PolyVoxCore/VertexTypes.h"
|
||||
#include "PolyVoxImpl/Utility.h"
|
||||
#include "Vector.h"
|
||||
#include "LargeVolume.h"
|
||||
#include "PolyVoxCore/Vector.h"
|
||||
#include "PolyVoxCore/LargeVolume.h"
|
||||
|
||||
namespace PolyVox
|
||||
{
|
Reference in New Issue
Block a user