#ifndef NIO_H #define NIO_H #include #include class WavFile; /**Interface to Nio Subsystem * * Should be only externally included header */ namespace Nio { void init(void); bool start(void); void stop(void); void setDefaultSource(std::string name); void setDefaultSink(std::string name); bool setSource(std::string name); bool setSink(std::string name); void setPostfix(std::string post); std::string getPostfix(void); std::set getSources(void); std::set getSinks(void); std::string getSource(void); std::string getSink(void); //Get the prefered sample rate from jack (if running) void preferedSampleRate(unsigned &rate); //Wave writing void waveNew(class WavFile *wave); void waveStart(void); void waveStop(void); void waveEnd(void); extern bool autoConnect; extern std::string defaultSource; extern std::string defaultSink; }; #endif