This library contains a C++ wrapper class for the sound playing
routines in the March 1993 Dr. Dobbs journal.  It allows you to 
easily play digitized sound files through the PC speaker in your
programs.

Here's the "Sound playing for the Impatient" guide:

#include <sound.h>
Sound Bang("BANG.WAV", 10000);
Bang.play();

That's all it takes -although it would be wise to call "Sound::driverLoaded()"
first to check if the speaker driver ("IBMSND.COM") is loaded.

You must compile with the large memory model.

Thanks to John Ratcliff (he wrote the Dr. Dobbs article) for the 
IBMSND driver and CheckIt function.

Feel free to use my code in your projects.  I don't know the
licensing on the Dr. Dobbs sound driver though.

Enjoy!

Kevin Dahlhausen
ap096@po.cwru.edu

