home *** CD-ROM | disk | FTP | other *** search
/ Game Audio Programming / GameAudioProgramming.iso / Game_Audio / audio_sdk / src / AudioLib / AudioStreamFactory.h < prev    next >
C/C++ Source or Header  |  2002-06-27  |  768b  |  29 lines

  1. /***********************************************************\
  2. Copyright (C) James Boer, 2002. 
  3. All rights reserved worldwide.
  4.  
  5. This software is provided "as is" without express or implied
  6. warranties. You may freely copy and compile this source into
  7. applications you distribute provided that the copyright text
  8. below is included in the resulting source code, for example:
  9. "Portions Copyright (C) James Boer, 2002"
  10. \***********************************************************/
  11. #ifndef AUDIO_STREAM_FACTORY_H___
  12. #define AUDIO_STREAM_FACTORY_H___
  13.  
  14. #include "Audio.h"
  15.  
  16. namespace Audio
  17. {
  18.  
  19.  
  20. class AudioStreamFactory : public IAudioStreamFactory
  21. {
  22. public:
  23.     bool CreateAudioStream(IAudioStream*& pStream);
  24. };
  25.  
  26.  
  27. }
  28.  
  29. #endif // AUDIO_STREAM_FACTORY_H___