arabica/test/DOM_wide/main.cpp
jez_higgins 2b051fc1ff gcc 4.0.2 fixes
Use ARABICA_NO_WCHAR_T to exclude the bits that don't build under Cygwin
2005-11-25 15:54:08 +00:00

23 lines
488 B
C++

#ifdef _MSC_VER
#pragma warning(disable: 4786 4250 4503)
#endif
#ifndef ARABICA_NO_WCHAR_T
#include <iostream>
#endif
#include "../DOM/dom_test_suite.hpp"
////////////////////////////////////////////////
int main(int argc, const char* argv[])
{
#ifndef ARABICA_NO_WCHAR_T
DOM_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
#else
std::cout << "No DOM_wide tests on this platform :)" << std::endl;
#endif
return 0;
} // main
// end of file