Just remembered that we settled on a different formatting for the API docs so that it gets highlighted better in KDE.

This commit is contained in:
Daviw Williams
2013-03-04 15:36:11 +01:00
parent b4fcb3daf8
commit df5c339f64
2 changed files with 46 additions and 41 deletions

View File

@ -29,9 +29,11 @@ using namespace std;
namespace PolyVox
{
/// You can specify a compression level when constructing this compressor. This controls the tradeoff between speed and compression
/// rate. Levels 0-9 are the standard zlib-style levels, 10 is best possible compression (not zlib compatible, and may be very slow).
/// \param iCompressionLevel The desired compression level.
/**
* You can specify a compression level when constructing this compressor. This controls the tradeoff between speed and compression
* rate. Levels 0-9 are the standard zlib-style levels, 10 is best possible compression (not zlib compatible, and may be very slow).
* \param iCompressionLevel The desired compression level.
*/
MinizCompressor::MinizCompressor(int iCompressionLevel)
:m_pDeflator(0)
{