diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-13 05:54:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-13 05:54:40 +0000 |
| commit | ef02a0c8ae65f169157c90064a335303e964a4c1 (patch) | |
| tree | f1a1bf6cfe05ee11545bfa811f5a2582e1906dce /otk/ustring.cc | |
| parent | 5a90d2b671f01f29043ab82f909440de0abfa362 (diff) | |
almost done the ustring conversion
Diffstat (limited to 'otk/ustring.cc')
| -rw-r--r-- | otk/ustring.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/otk/ustring.cc b/otk/ustring.cc index 8f3cdfc4..c15effb0 100644 --- a/otk/ustring.cc +++ b/otk/ustring.cc @@ -142,6 +142,11 @@ ustring::size_type ustring::max_size() const return _string.max_size(); } +bool ustring::empty() const +{ + return _string.empty(); +} + void ustring::clear() { _string.erase(); |
