Home | History | Annotate | Download | only in common

Lines Matching defs:CStr

11 * File: cstr.h
24 * ICU-internal class CStr, a small helper class to facilitate passing UnicodeStrings
36 * printf("%s", CStr(s)());
38 * The explicit call to the CStr() constructor creates a temporary object.
46 class U_COMMON_API CStr : public UMemory {
48 CStr(const UnicodeString &in);
49 ~CStr();
54 CStr(const CStr &other); // Forbid copying of this class.
55 CStr &operator =(const CStr &other); // Forbid assignment.