Finisher.h 186 B

12345678910
  1. #ifndef NULLSOFT_ENC_WAV_FINISHER_H
  2. #define NULLSOFT_ENC_WAV_FINISHER_H
  3. class AudioCommon : public AudioCoder
  4. {
  5. public:
  6. virtual void FinishAudio(const wchar_t *filename)=0;
  7. };
  8. #endif