arabica/test/XPath_silly/main.cpp

26 lines
527 B
C++
Raw Normal View History

2005-09-08 23:41:36 +02:00
#ifdef _MSC_VER
#pragma warning(disable:4224 4267)
#endif
2005-10-18 13:39:56 +02:00
#include <iostream>
#include "../XPath/xpath_test_suite.hpp"
#include "../silly_string/silly_string.hpp"
2005-11-10 11:02:45 +01:00
namespace Arabica
{
template<> class default_string_adaptor<silly_string> : public silly_string_adaptor { };
} // namespace Arabica
2005-09-08 23:41:36 +02:00
/////////////////////////////////////////
2005-10-31 13:07:30 +01:00
int main(int argc, const char** argv)
2005-09-08 23:41:36 +02:00
{
std::cout << "Hello" << std::endl;
2005-10-18 13:39:56 +02:00
XPath_test_suite<silly_string, Arabica::default_string_adaptor<silly_string> >(argc, argv);
2005-09-08 23:41:36 +02:00
} // main