25 lines
498 B
C++
25 lines
498 B
C++
#include "input.h"
|
|
#include <mist/dtsc.h>
|
|
|
|
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<int,unsigned long long int> iVecs;
|
|
std::string key;
|
|
};
|
|
}
|
|
|
|
typedef Mist::inputDTSC mistIn;
|
|
|
|
|