tahoma2d/toonz/sources/toonzfarm/tfarmclient/casmfileinfo.h

21 lines
341 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#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