Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2006, 10:30:13 PM (18 years ago)
Author:
bensch
Message:

try with the shader

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/sound/sound_buffer.h

    r9805 r9806  
    77#define _SOUND_BUFFER_H
    88
     9#include "base_object.h"
    910#include "sound_buffer_data.h"
    1011
     
    1213{
    1314  //! A class that represents a datastructure to play Sounds.
    14   class SoundBuffer
     15  class SoundBuffer : virtual public BaseObject
    1516  {
     17    ObjectListDeclaration(SoundBuffer);
    1618  public:
    1719    SoundBuffer();
     
    1921    SoundBuffer(const SoundBufferData::Pointer& dataPointer);
    2022    SoundBuffer(const std::string& fileName);
     23    virtual ~SoundBuffer();
    2124
    2225    bool operator==(const SoundBuffer& buffer) const {return this->data == buffer.data; };
Note: See TracChangeset for help on using the changeset viewer.