00001 #ifndef WAVEFILE_H 00002 #define WAVEFILE_H 00003 00004 #include <QString> 00005 #include <QFile> 00006 00007 class WaveFile 00008 { 00009 private: 00010 WaveFile(); 00011 00012 public: 00013 static QFile* createHeader(const QString &filename); 00014 static void fillHeader(QFile *file, int sampleSize); 00015 00016 static int SAMPLING_RATE; 00017 static int SAMPLE_BYTE; 00018 }; 00019 00020 #endif // WAVEFILE_H