summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-07-12 14:46:48 +0000
committerRüdiger Timm <rt@openoffice.org>2004-07-12 14:46:48 +0000
commit76ae208b12523543432589b88d6aa3dd322be8cb (patch)
treed463dc8646543156dd457ff9f021f45b95712a3e /cosv
parentf447bb4a4500637fe884d30681cf4b00213aa775 (diff)
INTEGRATION: CWS adc8 (1.1.1.1.104); FILE MERGED
2004/07/01 13:54:22 np 1.1.1.1.104.1: #i30968# Implement csv::StreamStr strip-functions. Also some general cosv maintenance. Fixing the bug with directory attributes in ploc_dir.cxx. Updating documentation. Making string classes 64-bit compatible by replacing UINT32 by ::size_t for the strings size- and position-type.
Diffstat (limited to 'cosv')
-rw-r--r--cosv/inc/cosv/str_types.hxx17
1 files changed, 11 insertions, 6 deletions
diff --git a/cosv/inc/cosv/str_types.hxx b/cosv/inc/cosv/str_types.hxx
index 0e3c239e161f..a7e7ff00678d 100644
--- a/cosv/inc/cosv/str_types.hxx
+++ b/cosv/inc/cosv/str_types.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: str_types.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: np $ $Date: 2002-03-08 14:25:39 $
+ * last change: $Author: rt $ $Date: 2004-07-12 15:46:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -66,11 +66,13 @@
namespace csv
{
+/** Provides some generally used constants.
+*/
struct str
{
public:
- typedef uintt position;
- typedef position size;
+ typedef ::size_t position;
+ typedef ::size_t size;
enum constants
{
@@ -86,6 +88,11 @@ struct str
};
+/** Is used for string comparisons.
+
+ @collab String
+ @collab various csv::compare(...) functions
+*/
class CharOrder_Table
{
public:
@@ -119,5 +126,3 @@ CharOrder_Table::operator()( char i_c ) const
} // namespace csv
#endif
-
-