Improve test macro.

Add include guards to the test header.
This commit is contained in:
Matt Williams
2010-02-26 16:11:13 +00:00
parent 6a828ec244
commit 7597b56620
3 changed files with 9 additions and 3 deletions

View File

@ -21,6 +21,9 @@ freely, subject to the following restrictions:
distribution.
*******************************************************************************/
#ifndef __PolyVox_TestVolume_H__
#define __PolyVox_TestVolume_H__
#include <QObject>
class TestVolume: public QObject
@ -30,3 +33,5 @@ class TestVolume: public QObject
private slots:
void testSize();
};
#endif