From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqconststring.html | 91 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 doc/html/tqconststring.html (limited to 'doc/html/tqconststring.html') diff --git a/doc/html/tqconststring.html b/doc/html/tqconststring.html new file mode 100644 index 000000000..dcfa9b256 --- /dev/null +++ b/doc/html/tqconststring.html @@ -0,0 +1,91 @@ + + + + + +TQConstString Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

TQConstString Class Reference

+ +

The TQConstString class provides string objects using constant Unicode data. +More... +

All the functions in this class are reentrant when TQt is built with thread support.

+

#include <tqstring.h> +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + + + +The TQConstString class provides string objects using constant Unicode data. +

In order to minimize copying, highly optimized applications can +use TQConstString to provide a TQString-compatible object from +existing Unicode data. It is then the programmer's responsibility +to ensure that the Unicode data exists for the entire lifetime of +the TQConstString object. +

A TQConstString is created with the TQConstString constructor. The +string held by the object can be obtained by calling string(). +

See also Text Related Classes. + +


Member Function Documentation

+

TQConstString::TQConstString ( const TQChar * unicode, uint length ) +

+Constructs a TQConstString that uses the first length Unicode +characters in the array unicode. Any attempt to modify copies +of the string will cause it to create a copy of the data, thus it +remains forever unmodified. +

The data in unicode is not copied. The caller must be able to +guarantee that unicode will not be deleted or modified. + +

TQConstString::~TQConstString () +

+Destroys the TQConstString, creating a copy of the data if other +strings are still using it. + +

const TQString & TQConstString::string () const +

+ +

Returns a constant string referencing the data passed during +construction. + + +


+This file is part of the TQt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.3