1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Updates to browser plugin wrappers.

This commit is contained in:
Julian Storer 2010-05-17 13:44:27 +01:00
parent 88c95982f7
commit d65a0722fc
9 changed files with 96 additions and 59 deletions

View file

@ -102,4 +102,14 @@ const juce_wchar* StringPool::getPooledString (const juce_wchar* const s)
return getPooledStringFromArray (strings, s);
}
int StringPool::size() const throw()
{
return strings.size();
}
const juce_wchar* StringPool::operator[] (const int index) const throw()
{
return strings [index];
}
END_JUCE_NAMESPACE