diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-09-14 11:57:29 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-09-14 11:57:29 +0000 |
commit | c20d09a96761a94182006f16108095f9e4780df5 (patch) | |
tree | 75a51447aa3a9444a459f4f3b16ecc6ce3697715 /ace/Dynamic_Service.h | |
parent | b7e51caa3c1f5149668efeab3b125a3f0a334af8 (diff) | |
download | ATCD-c20d09a96761a94182006f16108095f9e4780df5.tar.gz |
ChangeLogTag: Tue Sep 14 11:57:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Dynamic_Service.h')
-rw-r--r-- | ace/Dynamic_Service.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Dynamic_Service.h b/ace/Dynamic_Service.h index 85d1a2f7730..e7cddce6ad8 100644 --- a/ace/Dynamic_Service.h +++ b/ace/Dynamic_Service.h @@ -39,10 +39,11 @@ template <class TYPE> class ACE_Dynamic_Service : public ACE_Dynamic_Service_Base { public: - /// Return instance using <name> to search the Service_Repository. - static TYPE*instance (const ACE_TCHAR *name); + /// Return instance using @a name to search the Service_Repository. + static TYPE* instance (const ACE_TCHAR *name); #if defined (ACE_USES_WCHAR) + /// Return instance using @a name to search the Service_Repository. static TYPE* instance (const ACE_ANTI_TCHAR *name); #endif // ACE_USES_WCHAR }; |