]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/sound.h
simplifying code, removing outdated API
[wxWidgets.git] / include / wx / osx / sound.h
index e41636b1efe8f49cfa3dbe892cbf9565ecc305df..7b0329bdec3bc1e967d9ff7fc18feff7cd7e63fb 100644 (file)
@@ -30,6 +30,9 @@ public :
     virtual void Stop();
     // can be called by a timer for repeated tasks during playback
     virtual void SoundTask();
+    // mark this to be deleted
+    virtual void MarkForDeletion();
+    virtual bool IsMarkedForDeletion() const { return m_markedForDeletion; }
     
     // does the true work of stopping and cleaning up
     virtual void DoStop() = 0;
@@ -38,18 +41,19 @@ protected :
     
     unsigned int m_flags;
     wxSoundTimer* m_pTimer;
+    bool m_markedForDeletion;
 } ;
 
 class WXDLLIMPEXP_ADV wxSound : public wxSoundBase
 {
 public:
     wxSound();
-    wxSound(const wxString& fileName, bool isResource = FALSE);
+    wxSound(const wxString& fileName, bool isResource = false);
     wxSound(int size, const wxByte* data);
     virtual ~wxSound();
 
     // Create from resource or file
-    bool  Create(const wxString& fileName, bool isResource = FALSE);
+    bool  Create(const wxString& fileName, bool isResource = false);
     // Create from data
     bool Create(int size, const wxByte* data);