|
@@ -333,6 +333,18 @@ namespace Framework
|
|
|
__declspec( dllexport ) bool operator>( Text &t ) const;
|
|
|
// Prüft, ob der Inhalt des Textes nach alphabetischer Ordnung früher kommt als der Inhalt eines anderen Textes
|
|
|
__declspec( dllexport ) bool operator<( Text &t ) const;
|
|
|
+ // Erstellt einen neuen Text bestehend aus diesem und t2
|
|
|
+ __declspec( dllexport ) Text operator+( const Text &t2 );
|
|
|
+ // Erstellt einen neuen Text bestehend aus diesem und t2
|
|
|
+ __declspec( dllexport ) Text operator+( const char *t2 );
|
|
|
+ // Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
+ __declspec( dllexport ) Text operator+( const int num );
|
|
|
+ // Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
+ __declspec( dllexport ) Text operator+( const __int64 num );
|
|
|
+ // Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
+ __declspec( dllexport ) Text operator+( const double num );
|
|
|
+ // Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
+ __declspec( dllexport ) Text operator+( const float num );
|
|
|
};
|
|
|
|
|
|
class TextReader : public Reader
|