You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
208 B
13 lines
208 B
11 years ago
|
#ifndef TDEVDEEPCOPY_H
|
||
|
#define TDEVDEEPCOPY_H
|
||
15 years ago
|
|
||
15 years ago
|
#include <tqstring.h>
|
||
15 years ago
|
|
||
15 years ago
|
inline TQString deepCopy( const TQString& s )
|
||
15 years ago
|
{
|
||
15 years ago
|
TQCString str = s.utf8();
|
||
|
return TQString::fromUtf8( str, str.length() );
|
||
15 years ago
|
}
|
||
|
|
||
|
#endif
|