1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-15 00:24:19 +00:00

Internal refactoring of file functions and win32 com objects.

This commit is contained in:
Julian Storer 2010-04-25 21:13:12 +01:00
parent 87175e988b
commit 21006fbd0a
27 changed files with 593 additions and 1285 deletions

View file

@ -652,14 +652,12 @@ public:
outputId (outputId_),
isOpen_ (false),
isStarted (false),
internal (0)
internal (new ALSAThread (inputId_, outputId_))
{
internal = new ALSAThread (inputId, outputId);
}
~ALSAAudioIODevice()
{
delete internal;
}
const StringArray getOutputChannelNames()
@ -817,7 +815,7 @@ public:
private:
bool isOpen_, isStarted;
ALSAThread* internal;
ScopedPointer<ALSAThread> internal;
};