00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef TAO_STUB_FACTORY_H_
00019 #define TAO_STUB_FACTORY_H_
00020
00021 #include "ace/pre.h"
00022
00023 #include "tao/TAO_Export.h"
00024
00025 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00026 # pragma once
00027 #endif
00028
00029 #include "tao/Versioned_Namespace.h"
00030
00031 #include "ace/Service_Object.h"
00032
00033 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00034
00035
00036 class TAO_MProfile;
00037 class TAO_ORB_Core;
00038 class TAO_Stub;
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 class TAO_Export TAO_Stub_Factory : public ACE_Service_Object
00051 {
00052 public:
00053
00054 virtual ~TAO_Stub_Factory (void);
00055
00056
00057 virtual TAO_Stub *create_stub (const char *repository_id,
00058 const TAO_MProfile &profiles,
00059 TAO_ORB_Core *orb_core) = 0;
00060 };
00061
00062 TAO_END_VERSIONED_NAMESPACE_DECL
00063
00064 #include "ace/post.h"
00065 #endif