tahoma2d/toonz/sources/toonzfarm/tfarmclient/casmfileinfo.h
2016-06-15 15:43:10 +09:00

19 lines
344 B
C++

#pragma once
#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