arabica/test/XPath/main_wide.cpp

22 lines
437 B
C++
Raw Normal View History

2005-10-17 23:24:43 +02:00
#ifdef _MSC_VER
#pragma warning(disable:4224 4267)
#endif
#ifndef ARABICA_NO_WCHAR_T
2005-10-18 13:39:56 +02:00
#include <iostream>
#endif
2006-09-12 23:21:48 +02:00
#include "xpath_test_suite.hpp"
2005-10-17 23:24:43 +02:00
/////////////////////////////////////////
2005-10-31 13:07:30 +01:00
int main(int argc, const char** argv)
2005-10-17 23:24:43 +02:00
{
#ifndef ARABICA_NO_WCHAR_T
2005-10-18 13:39:56 +02:00
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
2005-10-17 23:24:43 +02:00
} // main