arabica/tests/XPath/main_wide.cpp

18 lines
358 B
C++
Raw Normal View History

2005-10-17 23:24:43 +02:00
#ifdef _MSC_VER
2007-08-31 12:59:35 +02:00
#pragma warning(disable:4244 4267)
2005-10-17 23:24:43 +02:00
#endif
2007-07-20 22:54:29 +02:00
#include <iostream>
#ifndef ARABICA_NO_WCHAR_T
2006-09-20 16:01:21 +02:00
#include "xpath_test_suite.hpp"
#endif
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
{
2007-12-08 22:20:28 +01:00
bool ok = XPath_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
return !ok;
2005-10-17 23:24:43 +02:00
} // main