/* -*- C++ -*- $Id$ */ #ifndef NOTIFY_VALIDATE_WORKER_CPP #define NOTIFY_VALIDATE_WORKER_CPP #include "Validate_Worker_T.h" #include "tao/debug.h" #include "orbsvcs/Log_Macros.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) #pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ TAO_BEGIN_VERSIONED_NAMESPACE_DECL namespace TAO_Notify { template Validate_Worker::Validate_Worker() { } template void Validate_Worker::work (TOPOOBJ* o) { if (o == 0) { if (TAO_debug_level > 0) { ORBSVCS_DEBUG ((LM_DEBUG, ACE_TEXT("(%P|%t)Validate_Worker::work: obj is nil\n"))); } } else { o->validate (); } } } // namespace TAO_Notify TAO_END_VERSIONED_NAMESPACE_DECL #endif /* VALIDATE_WORKER_CPP */