00001 /* trace.cc 00002 */ 00003 #include "osl/misc/trace.h" 00004 #ifdef OSL_STATIC_INITIALIZER_TRACE 00005 # include <iostream> 00006 #endif 00007 00008 osl::misc::StaticInitializeTracer:: 00009 StaticInitializeTracer(const char * 00010 #ifdef OSL_STATIC_INITIALIZER_TRACE 00011 filename 00012 #endif 00013 ) 00014 { 00015 #ifdef OSL_STATIC_INITIALIZER_TRACE 00016 std::cerr << "init " << filename << "\n"; 00017 #endif 00018 } 00019 00020 00021 /* ------------------------------------------------------------------------- */ 00022 // ;;; Local Variables: 00023 // ;;; mode:c++ 00024 // ;;; c-basic-offset:2 00025 // ;;; End: