diff options
Diffstat (limited to 'ACE/ace/SStringfwd.h')
-rw-r--r-- | ACE/ace/SStringfwd.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/ACE/ace/SStringfwd.h b/ACE/ace/SStringfwd.h new file mode 100644 index 00000000000..315553751ce --- /dev/null +++ b/ACE/ace/SStringfwd.h @@ -0,0 +1,49 @@ +// -*- 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 */ + +ACE_BEGIN_VERSIONED_NAMESPACE_DECL + +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 */ + +ACE_END_VERSIONED_NAMESPACE_DECL + +#include /**/ "ace/post.h" + +#endif /* ACE_SSTRINGFWD_H */ |