mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
18 lines
443 B
C++
18 lines
443 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable: 4786 4250 4503)
|
|
#endif
|
|
|
|
#include "../DOM/dom_test_suite.hpp"
|
|
#include "../silly_string/silly_string.hpp"
|
|
|
|
//template<> class Arabica::default_string_adaptor<silly_string> : public silly_string_adaptor { };
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
DOM_test_suite<silly_string, silly_string_adaptor>(argc, argv);
|
|
|
|
return 0;
|
|
} // main
|
|
|
|
// end of file
|