summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/testIOS.cxx
blob: a6f33d852a2b9922edf434e11cd6e1903579c131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "kwsysPrivate.h"
#include KWSYS_HEADER(stl/vector)
#include KWSYS_HEADER(ios/sstream)
#include KWSYS_HEADER(ios/iostream)

int main()
{
  kwsys_ios::ostringstream ostr;
  ostr << "Hello, World!";
  kwsys_ios::cout << ostr.str() << kwsys_ios::endl;
  return 0;
}