os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/TestClass.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/TestClass.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,24 @@
     1.4 +/***********************************************************************************
     1.5 +  TestClass.cpp
     1.6 +
     1.7 + * Copyright (c) 1997
     1.8 + * Mark of the Unicorn, Inc.
     1.9 + *
    1.10 + * Permission to use, copy, modify, distribute and sell this software
    1.11 + * and its documentation for any purpose is hereby granted without fee,
    1.12 + * provided that the above copyright notice appear in all copies and
    1.13 + * that both that copyright notice and this permission notice appear
    1.14 + * in supporting documentation.  Mark of the Unicorn makes no
    1.15 + * representations about the suitability of this software for any
    1.16 + * purpose.  It is provided "as is" without express or implied warranty.
    1.17 +
    1.18 +***********************************************************************************/
    1.19 +#include "TestClass.h"
    1.20 +
    1.21 +#include <iostream>
    1.22 +
    1.23 +std::ostream& operator << (std::ostream& s, const TestClass& t) {
    1.24 +  return s << t.value();
    1.25 +}
    1.26 +
    1.27 +