summaryrefslogtreecommitdiff
path: root/ace/Basic_Types.h
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-04-06 20:00:39 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-04-06 20:00:39 +0000
commit0132a60b6d0a124c2a32ca9170ffaa5a3d2cae5b (patch)
tree9fbe8f307c610e47b3d41e5e064ef76e42908f6d /ace/Basic_Types.h
parentb297f518a397d9e2c20ed6b412e4dbdfe8bf1a6d (diff)
downloadATCD-0132a60b6d0a124c2a32ca9170ffaa5a3d2cae5b.tar.gz
ChangeLogTag: Fri Apr 6 14:45:52 2001 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ace/Basic_Types.h')
-rw-r--r--ace/Basic_Types.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/ace/Basic_Types.h b/ace/Basic_Types.h
index ac6fb0f0c7d..0f51a9909c5 100644
--- a/ace/Basic_Types.h
+++ b/ace/Basic_Types.h
@@ -258,7 +258,13 @@ typedef ACE_UINT16 ACE_USHORT16;
// If the platform lacks a long long, define one.
# if defined (ACE_LACKS_LONGLONG_T)
-class ACE_CString;
+# if defined (ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION)
+// Forward declaration for streams
+# include "ace/iosfwd.h"
+# else /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */
+// Else they will get all the stream header files
+# include "ace/streams.h"
+# endif /* ACE_HAS_MINIMUM_IOSTREAMH_INCLUSION */
/**
* @class ACE_U_LongLong
@@ -352,8 +358,9 @@ class ACE_CString;
/// Outputs the value to the FILE, in hex.
void output (FILE * = stdout) const;
- ACE_CString as_string (u_int base = 10,
- u_int uppercase = 0) const;
+ ACE_TCHAR *as_string (ACE_TCHAR *string,
+ u_int base = 10,
+ u_int uppercase = 0) const;
ACE_UINT32 hi (void) const;
ACE_UINT32 lo (void) const;