mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
21 lines
304 B
C++
21 lines
304 B
C++
//
|
|
// This include file is used to test the --include option
|
|
//
|
|
|
|
#ifdef CXXTEST_RUNNING
|
|
|
|
#include <cxxtest/ValueTraits.h>
|
|
|
|
namespace CxxTest
|
|
{
|
|
CXXTEST_TEMPLATE_INSTANTIATION
|
|
class ValueTraits<void *>
|
|
{
|
|
public:
|
|
ValueTraits(void *) {}
|
|
const char *asString(void) { return "(void *)"; }
|
|
};
|
|
}
|
|
|
|
#endif
|