Sophie

Sophie

distrib > * > 2010.0 > * > by-pkgid > b90d0d295bc5deaa2f765776f8c386b5 > files > 58

ecawave-debug-0.6.1-10mdv2009.0.i586.rpm

#ifndef QESAVEEVENT_H
#define QESAVEEVENT_H

#include <string>

#include "qeblockingevent.h"

/**
 * Simple audio-playback using the default output device
 */
class QESaveEvent : public QEBlockingEvent {

 public:

  bool class_invariant(void) { return(ectrl != 0); }
  QESaveEvent(ECA_CONTROL* ctrl,
	      const string& input,
	      const string& output);

 private:

  ECA_CONTROL* ectrl;
};

#endif