-rw-r--r-- | libopie2/opiemm/opiemm.pro | 2 | ||||
-rw-r--r-- | libopie2/opiemm/osoundsystem.cpp | 2 | ||||
-rw-r--r-- | libopie2/opiemm/osoundsystem.h | 17 |
3 files changed, 20 insertions, 1 deletions
diff --git a/libopie2/opiemm/opiemm.pro b/libopie2/opiemm/opiemm.pro index d6f54ee..ce30dfb 100644 --- a/libopie2/opiemm/opiemm.pro +++ b/libopie2/opiemm/opiemm.pro @@ -6,5 +6,5 @@ SOURCES = osoundsystem.cpp INTERFACES = TARGET = opiemm2 -VERSION = 1.8.2 +VERSION = 1.9.0 INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include diff --git a/libopie2/opiemm/osoundsystem.cpp b/libopie2/opiemm/osoundsystem.cpp index 51e088c..07f26c0 100644 --- a/libopie2/opiemm/osoundsystem.cpp +++ b/libopie2/opiemm/osoundsystem.cpp @@ -42,4 +42,6 @@ +using namespace Opie::Core; +using namespace Opie::MM; /*====================================================================================== * OSoundSystem diff --git a/libopie2/opiemm/osoundsystem.h b/libopie2/opiemm/osoundsystem.h index 096d397..3c3b622 100644 --- a/libopie2/opiemm/osoundsystem.h +++ b/libopie2/opiemm/osoundsystem.h @@ -37,4 +37,7 @@ #include <qmap.h> +namespace Opie { +namespace MM { + class OAudioInterface; class OMixerInterface; @@ -91,4 +94,6 @@ class OSoundSystem : public QObject static OSoundSystem* _instance; CardMap _interfaces; + class Private; + Private *d; }; @@ -125,4 +130,7 @@ class OSoundCard : public QObject private: void init(); + private: + class Private; + Private *d; }; @@ -151,4 +159,7 @@ class OAudioInterface : public QObject private: void init(); + private: + class Private; + Private *d; }; @@ -211,6 +222,12 @@ class OMixerInterface : public QObject private: void init(); + private: + class Private; + Private *d; }; +} +} + #endif // OSOUNDSYSTEM_H |