summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/tao/PortableServer/Servant_Base.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 21101e99aed..c403248db89 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jul 8 06:39:27 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tao/PortableServer/Servant_Base.h:
+ Added some typedefs useful for template meta programming
+
Mon Jul 4 11:02:28 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
diff --git a/TAO/tao/PortableServer/Servant_Base.h b/TAO/tao/PortableServer/Servant_Base.h
index 2568f693177..65777ee8f75 100644
--- a/TAO/tao/PortableServer/Servant_Base.h
+++ b/TAO/tao/PortableServer/Servant_Base.h
@@ -62,6 +62,10 @@ class TAO_PortableServer_Export TAO_ServantBase
: public virtual TAO_Abstract_ServantBase
{
public:
+ /// Useful for template programming.
+ typedef ::CORBA::Object _stub_type;
+ typedef ::CORBA::Object_ptr _stub_ptr_type;
+ typedef ::CORBA::Object_var _stub_var_type;
/// Destructor.
virtual ~TAO_ServantBase (void);