diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-05-05 12:53:55 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-05-05 12:53:55 +0000 |
commit | 3c61e20f081bf6fbab6d3483e5e7f71cb91c4974 (patch) | |
tree | 4d687030d8e848eb2c325e8234fb807f578df890 /ace/SStringfwd.h | |
parent | 65ce81267a19f490a22443567c75276fc864cbd2 (diff) | |
download | ATCD-RepositoryManager.tar.gz |
This commit was manufactured by cvs2svn to create branchRepositoryManager
'RepositoryManager'.
Diffstat (limited to 'ace/SStringfwd.h')
-rw-r--r-- | ace/SStringfwd.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/ace/SStringfwd.h b/ace/SStringfwd.h deleted file mode 100644 index f7bef34b86b..00000000000 --- a/ace/SStringfwd.h +++ /dev/null @@ -1,46 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file SStringfwd.h - * - * $Id$ - * - * Forward declarations and typedefs of ACE string types. - * - * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> - * @author Nanbor Wang <nanbor@cs.wustl.edu> - * @author Ossama Othman <ossama@uci.edu> - */ -//============================================================================= - -#ifndef ACE_SSTRINGFWD_H -#define ACE_SSTRINGFWD_H - -#include /**/ "ace/pre.h" - -#include "ace/Basic_Types.h" /* ACE_WCHAR_T definition */ - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - - -template <class CHAR> class ACE_String_Base; // Forward declaration. - -typedef ACE_WCHAR_T ACE_WSTRING_TYPE; - -typedef ACE_String_Base<char> ACE_CString; -typedef ACE_String_Base<ACE_WSTRING_TYPE> ACE_WString; - -// This allows one to use W or C String based on the Unicode -// setting -#if defined (ACE_USES_WCHAR) -typedef ACE_WString ACE_TString; -#else /* ACE_USES_WCHAR */ -typedef ACE_CString ACE_TString; -#endif /* ACE_USES_WCHAR */ - -#include /**/ "ace/post.h" - -#endif /* ACE_SSTRINGFWD_H */ |