|
@@ -331,17 +331,17 @@ namespace Framework
|
|
|
// 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 );
|
|
|
+ __declspec( dllexport ) Text operator+( const Text &t2 ) const;
|
|
|
// Erstellt einen neuen Text bestehend aus diesem und t2
|
|
|
- __declspec( dllexport ) Text operator+( const char *t2 );
|
|
|
+ __declspec( dllexport ) Text operator+( const char *t2 ) const;
|
|
|
// Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
- __declspec( dllexport ) Text operator+( const int num );
|
|
|
+ __declspec( dllexport ) Text operator+( const int num ) const;
|
|
|
// Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
- __declspec( dllexport ) Text operator+( const __int64 num );
|
|
|
+ __declspec( dllexport ) Text operator+( const __int64 num ) const;
|
|
|
// Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
- __declspec( dllexport ) Text operator+( const double num );
|
|
|
+ __declspec( dllexport ) Text operator+( const double num ) const;
|
|
|
// Erstellt einen neuen Text bestehend aus diesem und num
|
|
|
- __declspec( dllexport ) Text operator+( const float num );
|
|
|
+ __declspec( dllexport ) Text operator+( const float num ) const;
|
|
|
};
|
|
|
|
|
|
class TextReader : public Reader
|