arabica/test/XPath/main_wide.cpp
2006-09-12 21:21:48 +00:00

21 lines
437 B
C++

#ifdef _MSC_VER
#pragma warning(disable:4224 4267)
#endif
#ifndef ARABICA_NO_WCHAR_T
#include <iostream>
#endif
#include "xpath_test_suite.hpp"
/////////////////////////////////////////
int main(int argc, const char** argv)
{
#ifndef ARABICA_NO_WCHAR_T
XPath_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
#else
std::cout << "No wide tests on this platform" << std::endl;
#endif
} // main