]> git.tdb.fi Git - libs/al.git/blobdiff - source/buffer.h
Fix compilation on OS X
[libs/al.git] / source / buffer.h
index 00d1addca856811f1c3a8d75577d31d07f7b52db..3780b0b410d8f8c3161f0c6ba3fafc8da000ac45 100644 (file)
@@ -1,23 +1,34 @@
-/* $Id$
-
-This file is part of libmspal
-Copyright © 2008 Mikko Rasa, Mikkosoft Productions
-Diestributed under the LGPL
-*/
-
 #ifndef MSP_AL_BUFFER_H_
 #define MSP_AL_BUFFER_H_
 
 #include <string>
-#include <AL/al.h>
+#include <msp/datafile/loader.h>
+#include "al.h"
 #include "format.h"
 #include "types.h"
 
 namespace Msp {
 namespace AL {
 
+class Waveform;
+
+/**
+Buffers are used to store audio data and feed it into a Source.
+*/
 class Buffer
 {
+public:
+       class Loader: public DataFile::Loader
+       {
+       private:
+               Buffer &buf;
+
+       public:
+               Loader(Buffer &);
+       private:
+               void sound_data(const std::string &);
+       };
+
 private:
        uint id;
 
@@ -27,6 +38,7 @@ public:
 
        uint get_id() const { return id; }
        void data(Format, const void *, sizei, sizei);
+       void data(const Waveform &);
        void load_data(const std::string &);
 };