arabica/tests/XPath/main_wide.cpp

18 lines
358 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
{
2007-12-08 21:20:28 +00:00
bool ok = XPath_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
return !ok;
2005-10-17 21:24:43 +00:00
} // main