arabica/tests/XPath/main_wide.cpp

21 lines
436 B
C++
Raw Normal View History

2005-10-17 21:24:43 +00:00
#ifdef _MSC_VER
2007-08-31 10:59:35 +00:00
#pragma warning(disable:4244 4267)
2005-10-17 21:24:43 +00:00
#endif
2007-07-20 20:54:29 +00:00
#include <iostream>
#ifndef ARABICA_NO_WCHAR_T
2006-09-20 14:01:21 +00:00
#include "xpath_test_suite.hpp"
#endif
2005-10-17 21:24:43 +00:00
/////////////////////////////////////////
2005-10-31 12:07:30 +00:00
int main(int argc, const char** argv)
2005-10-17 21:24:43 +00:00
{
#ifndef ARABICA_NO_WCHAR_T
2005-10-18 11:39:56 +00: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 21:24:43 +00:00
} // main