00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef TAO_ACCEPTOR_FILTER_H
00015 #define TAO_ACCEPTOR_FILTER_H
00016
00017 #include "ace/pre.h"
00018
00019 #include "tao/orbconf.h"
00020 #include "tao/TAO_Export.h"
00021 #include "tao/Basic_Types.h"
00022
00023 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00024 # pragma once
00025 #endif
00026
00027 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00028
00029 namespace TAO
00030 {
00031 class ObjectKey;
00032 }
00033
00034 class TAO_MProfile;
00035 class TAO_Acceptor;
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 class TAO_Export TAO_Acceptor_Filter
00047 {
00048 public:
00049 virtual ~TAO_Acceptor_Filter (void);
00050
00051
00052
00053
00054
00055
00056 virtual int fill_profile (const TAO::ObjectKey &object_key,
00057 TAO_MProfile &mprofile,
00058 TAO_Acceptor **acceptors_begin,
00059 TAO_Acceptor **acceptors_end,
00060 CORBA::Short priority = TAO_INVALID_PRIORITY) = 0;
00061
00062
00063
00064 virtual int encode_endpoints (TAO_MProfile &mprofile) = 0;
00065 };
00066
00067 TAO_END_VERSIONED_NAMESPACE_DECL
00068
00069 #include "ace/post.h"
00070 #endif