~ubuntu-branches/ubuntu/wily/clucene-core/wily-proposed

« back to all changes in this revision

Viewing changes to src/CLucene/util/StringBuffer.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2008-02-21 08:43:54 UTC
  • mfrom: (3.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080221084354-bzl2ied6qgvwwfr8
Tags: 0.9.20-3
* Lower compat/debhelper to 5.
* Re-enable static library build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
   ///Appends a copy of the string value 
36
36
   void append(const TCHAR* value);
37
37
   ///Appends a copy of the string value
38
 
   void append(const TCHAR* value, int32_t appendedLength);
 
38
   void append(const TCHAR* value, size_t appendedLength);
39
39
   ///Appends an integer (after conversion to a character string)
40
40
   void appendInt(const int32_t value);
41
41
   ///Appends a float_t (after conversion to a character string)
43
43
   ///Puts a copy of the string value in front of the current string in the StringBuffer
44
44
   void prepend(const TCHAR* value);
45
45
   ///Puts a copy of the string value in front of the current string in the StringBuffer
46
 
   void prepend(const TCHAR* value, int32_t prependedLength);
 
46
   void prepend(const TCHAR* value, size_t prependedLength);
47
47
   
48
48
   ///Contains the length of string in the StringBuffer
49
49
   ///Public so that analyzers can edit the length directly