Compile fixes for Linux.

Added SWIG files to make bindings build.
This commit is contained in:
David Williams
2013-06-28 15:07:19 +02:00
parent 0d839c4a51
commit 839f366174
5 changed files with 20 additions and 6 deletions

View File

@ -38,12 +38,12 @@ namespace PolyVox
* Provides an interface for performing paging of data.
*/
template <typename VoxelType>
class FilePager : public Pager<typename VoxelType>
class FilePager : public Pager<VoxelType>
{
public:
/// Constructor
FilePager(const std::string& strFolderName)
:Pager()
:Pager<VoxelType>()
,m_strFolderName(strFolderName)
{
}