1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-28 02:30:05 +00:00

Added midi out to AudioProcessorGraphs. Improved documenation for Singletons. Added a couple of methods to String. Fixed a small bug in ogg-vorbis decoding.

This commit is contained in:
Julian Storer 2009-11-26 21:30:51 +00:00
parent 55d8c360bb
commit 9fc4b6d822
8 changed files with 63 additions and 14 deletions

View file

@ -882,6 +882,21 @@ String& String::operator<< (const short number) throw()
return *this;
}
String& String::operator<< (const unsigned short number) throw()
{
return operator<< ((unsigned int) number);
}
String& String::operator<< (const long number) throw()
{
return operator<< ((int) number);
}
String& String::operator<< (const unsigned long number) throw()
{
return operator<< ((unsigned int) number);
}
String& String::operator<< (const double number) throw()
{
operator+= (String (number));