tahoma2d/toonz/sources/toonzfarm/tfarmclient/casmfileinfo.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

20 lines
329 B
C++

#ifndef CASMFILEINFO_H
#define CASMFILEINFO_H
#include "tfilepath.h"
//------------------------------------------------------------------------------
class CasmFileInfo
{
public:
CasmFileInfo(const TFilePath &fp);
void getFrameRange(int &startFrame, int &endFrame, bool &interlaced);
private:
TFilePath m_fp;
};
#endif