tahoma2d/toonz/sources/toonzfarm/tfarmclient/casmfileinfo.h
2016-05-17 00:04:11 +09:00

20 lines
341 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