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

20 lines
344 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"
//------------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
class CasmFileInfo {
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
CasmFileInfo(const TFilePath &fp);
void getFrameRange(int &startFrame, int &endFrame, bool &interlaced);
2016-03-19 06:57:51 +13:00
private:
2016-06-15 18:43:10 +12:00
TFilePath m_fp;
2016-03-19 06:57:51 +13:00
};
#endif