Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef NOTIFY_VALIDATE_WORKER_H
00013 #define NOTIFY_VALIDATE_WORKER_H
00014
00015 #include "ace/pre.h"
00016
00017 #include "orbsvcs/ESF/ESF_Worker.h"
00018
00019 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00020 #pragma once
00021 #endif
00022
00023 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00024
00025 namespace TAO_Notify
00026 {
00027
00028
00029
00030 template<class TOPOOBJ>
00031 class Validate_Worker : public TAO_ESF_Worker<TOPOOBJ>
00032 {
00033 public:
00034
00035 Validate_Worker();
00036
00037
00038 virtual void work (TOPOOBJ* o);
00039 };
00040 }
00041
00042 TAO_END_VERSIONED_NAMESPACE_DECL
00043
00044 #if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
00045 #include "Validate_Worker_T.cpp"
00046 #endif
00047
00048 #if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
00049 #pragma implementation ("Validate_Worker_T.cpp")
00050 #endif
00051
00052 #include "ace/post.h"
00053
00054 #endif
00055
00056