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:
parent
88c95982f7
commit
d65a0722fc
9 changed files with 96 additions and 59 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue