2005-08-04 23:23:48 +02:00
|
|
|
|
2005-08-05 21:58:58 +02:00
|
|
|
#ifdef _MSC_VER
|
2005-08-04 23:23:48 +02:00
|
|
|
#pragma warning(disable:4224 4267)
|
2005-08-05 21:58:58 +02:00
|
|
|
#endif
|
2005-08-04 23:23:48 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
2005-10-18 13:39:56 +02:00
|
|
|
#include "xpath_test_suite.hpp"
|
2005-08-04 23:23:48 +02:00
|
|
|
|
|
|
|
/////////////////////////////////////////
|
2005-10-31 13:07:30 +01:00
|
|
|
int main(int argc, const char** argv)
|
2005-08-04 23:23:48 +02:00
|
|
|
{
|
|
|
|
std::cout << "Hello" << std::endl;
|
|
|
|
|
2005-10-18 13:39:56 +02:00
|
|
|
XPath_test_suite<std::string, Arabica::default_string_adaptor<std::string> >(argc, argv);
|
2005-08-04 23:23:48 +02:00
|
|
|
} // main
|
|
|
|
|