#include "input.h" #include namespace Mist { class inputDTSC : public Input { public: inputDTSC(Util::Config * cfg); protected: //Private Functions bool checkArguments(); bool readHeader(); void getNext(bool smart = true); void seek(int seekTime); void trackSelect(std::string trackSpec); DTSC::File inFile; std::map iVecs; std::string key; }; } typedef Mist::inputDTSC mistIn;