* Added bool and double BString::operator<<() versions.
* Removed the clashing operator in JobSetupDlg. Automatic whitespace cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42387 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -307,14 +307,16 @@ public:
|
||||
BString& operator<<(const char* string);
|
||||
BString& operator<<(const BString& string);
|
||||
BString& operator<<(char c);
|
||||
BString& operator<<(bool value);
|
||||
BString& operator<<(int value);
|
||||
BString& operator<<(unsigned int value);
|
||||
BString& operator<<(unsigned long value);
|
||||
BString& operator<<(long value);
|
||||
BString& operator<<(unsigned long long value);
|
||||
BString& operator<<(long long value);
|
||||
// float output hardcodes %.2f style formatting
|
||||
// float/double output hardcodes %.2f style formatting
|
||||
BString& operator<<(float value);
|
||||
BString& operator<<(double value);
|
||||
|
||||
private:
|
||||
class PosVect;
|
||||
|
||||
Reference in New Issue
Block a user