Some missing from merge.

Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
Salja 2012-08-05 14:54:07 +02:00 committed by Antz
parent ec939a5bce
commit f4be15a7af
1895 changed files with 160408 additions and 53601 deletions

View file

@ -4,7 +4,9 @@
/**
* @file SString.h
*
* @author Douglas C. Schmidt (d.schmidt@vanderbilt.edu)
* $Id: SString.h 92580 2010-11-15 09:48:02Z johnnyw $
*
* @author Douglas C. Schmidt (schmidt@cs.wustl.edu)
*/
//=============================================================================
@ -156,11 +158,11 @@ public:
/// Default destructor.
~ACE_SString (void);
/// Return the slot'th character in the string (doesn't perform
/// Return the <slot'th> character in the string (doesn't perform
/// bounds checking).
char operator [] (size_type slot) const;
/// Return the slot'th character by reference in the string
/// Return the <slot'th> character by reference in the string
/// (doesn't perform bounds checking).
char &operator [] (size_type slot);
@ -204,7 +206,7 @@ public:
/// location that matches (will be >= pos), else npos.
size_type find (const ACE_SString &str, size_type pos = 0) const;
/// Find @a s starting at pos. Returns the slot of the first
/// Find <s> starting at pos. Returns the slot of the first
/// location that matches (will be >= pos), else npos.
size_type find (const char *s, size_type pos = 0) const;