Renamed BlockData to Block, and moved it out of Impl. It might be useful more generally...
This commit is contained in:
parent
6e1ddaeb97
commit
1f6a3231c1
@ -16,6 +16,8 @@ SET(CORE_SRC_FILES
|
||||
|
||||
#Projects headers files
|
||||
SET(CORE_INC_FILES
|
||||
include/Block.h
|
||||
include/Block.inl
|
||||
include/GradientEstimators.inl
|
||||
include/IndexedSurfacePatch.h
|
||||
include/Log.h
|
||||
@ -42,8 +44,6 @@ SET(IMPL_SRC_FILES
|
||||
)
|
||||
|
||||
SET(IMPL_INC_FILES
|
||||
include/PolyVoxImpl/BlockData.h
|
||||
include/PolyVoxImpl/BlockData.inl
|
||||
include/PolyVoxImpl/CPlusPlusZeroXSupport.h
|
||||
include/PolyVoxImpl/DecimatedSurfaceExtractor.h
|
||||
include/PolyVoxImpl/FastSurfaceExtractor.h
|
||||
|
@ -19,13 +19,13 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
******************************************************************************/
|
||||
#pragma endregion
|
||||
|
||||
#ifndef __PolyVox_BlockData_H__
|
||||
#define __PolyVox_BlockData_H__
|
||||
#ifndef __PolyVox_Block_H__
|
||||
#define __PolyVox_Block_H__
|
||||
|
||||
#pragma region Headers
|
||||
#include "../PolyVoxForwardDeclarations.h"
|
||||
#include "PolyVoxForwardDeclarations.h"
|
||||
|
||||
#include "CPlusPlusZeroXSupport.h"
|
||||
#include "PolyVoxImpl/CPlusPlusZeroXSupport.h"
|
||||
#pragma endregion
|
||||
|
||||
namespace PolyVox
|
||||
@ -59,6 +59,6 @@ namespace PolyVox
|
||||
};
|
||||
}
|
||||
|
||||
#include "BlockData.inl"
|
||||
#include "Block.inl"
|
||||
|
||||
#endif
|
@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#pragma endregion
|
||||
|
||||
#pragma region Headers
|
||||
#include "Utility.h"
|
||||
#include "PolyVoxImpl/Utility.h"
|
||||
#include "Vector.h"
|
||||
#include "Volume.h"
|
||||
|
@ -23,7 +23,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#define __PolyVox_Volume_H__
|
||||
|
||||
#pragma region Headers
|
||||
#include "PolyVoxImpl/BlockData.h"
|
||||
#include "Block.h"
|
||||
#include "PolyVoxForwardDeclarations.h"
|
||||
|
||||
#include "PolyVoxImpl/CPlusPlusZeroXSupport.h"
|
||||
|
@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#pragma endregion
|
||||
|
||||
#pragma region Headers
|
||||
#include "PolyVoxImpl/BlockData.h"
|
||||
#include "Block.h"
|
||||
#include "Log.h"
|
||||
#include "VolumeIterator.h"
|
||||
#include "Region.h"
|
||||
|
@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#pragma endregion
|
||||
|
||||
#pragma region Headers
|
||||
#include "PolyVoxImpl/BlockData.h"
|
||||
#include "Block.h"
|
||||
#include "Volume.h"
|
||||
#include "Vector.h"
|
||||
#include "Region.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user