2006-09-12 23:21:48 +02:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable:4224 4267)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include "xpath_test_suite.hpp"
|
|
|
|
#include "../silly_string/silly_string.hpp"
|
|
|
|
|
|
|
|
namespace Arabica
|
|
|
|
{
|
|
|
|
|
|
|
|
template<> class default_string_adaptor<silly_string> : public silly_string_adaptor { };
|
|
|
|
|
|
|
|
} // namespace Arabica
|
|
|
|
|
|
|
|
/////////////////////////////////////////
|
|
|
|
int main(int argc, const char** argv)
|
|
|
|
{
|
2007-12-08 22:20:28 +01:00
|
|
|
bool ok = XPath_test_suite<silly_string, Arabica::default_string_adaptor<silly_string> >(argc, argv);
|
|
|
|
return !ok;
|
2006-09-12 23:21:48 +02:00
|
|
|
} // main
|
|
|
|
|