2005-08-04 21:23:48 +00:00
|
|
|
|
2005-08-05 19:58:58 +00:00
|
|
|
#ifdef _MSC_VER
|
2006-08-04 09:51:03 +00:00
|
|
|
#pragma warning(disable:4244 4267)
|
2005-08-05 19:58:58 +00:00
|
|
|
#endif
|
2005-08-04 21:23:48 +00:00
|
|
|
|
|
|
|
#include <iostream>
|
2005-10-18 11:39:56 +00:00
|
|
|
#include "xpath_test_suite.hpp"
|
2005-08-04 21:23:48 +00:00
|
|
|
|
|
|
|
/////////////////////////////////////////
|
2005-10-31 12:07:30 +00:00
|
|
|
int main(int argc, const char** argv)
|
2005-08-04 21:23:48 +00:00
|
|
|
{
|
2005-10-18 11:39:56 +00:00
|
|
|
XPath_test_suite<std::string, Arabica::default_string_adaptor<std::string> >(argc, argv);
|
2005-08-04 21:23:48 +00:00
|
|
|
} // main
|
|
|
|
|