Documentation.

This commit is contained in:
David Williams 2016-01-03 22:45:55 +00:00
parent eef0bebacf
commit 85b1bbb641
2 changed files with 7 additions and 1 deletions

View File

@ -40,7 +40,12 @@
namespace PolyVox
{
/**
* Provides an interface for performing paging of data.
* An implementation of Pager which stores voxels to files on disk. Each chunk is written
* to a seperate file and you can specify the name of a folder where these will be stored.
*
* Note that no compression is performed (mostly to avoid dependancies) so for large
* volumes you may want to consider this class as an example and create a custom version
* with compression.
*/
template <typename VoxelType>
class FilePager : public PagedVolume<VoxelType>::Pager

View File

@ -29,6 +29,7 @@
namespace PolyVox
{
/// Unfinished class/feature, not appropriate for end user at the moment.
template <typename IteratorType>
class IteratorController
{