Initial
This commit is contained in:
35
avifile/AVIOpenDMLHeader.hpp
Normal file
35
avifile/AVIOpenDMLHeader.hpp
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef _AVIFILE_AVIOPENDMLHEADER_HPP_
|
||||
#define _AVIFILE_AVIOPENDMLHEADER_HPP_
|
||||
#ifndef _COMMON_WINDOWS_HPP_
|
||||
#include <common/windows.hpp>
|
||||
#endif
|
||||
#ifndef _COMMON_FILE_HPP_
|
||||
#include <common/file.hpp>
|
||||
#endif
|
||||
#ifndef _COMMON_ARRAY_HPP_
|
||||
#include <common/array.hpp>
|
||||
#endif
|
||||
#ifndef _AVIFILE_FOURCC_HPP_
|
||||
#include <avifile/fourcc.hpp>
|
||||
#endif
|
||||
#ifndef _COMMON_VFW_HPP_
|
||||
#include <common/vfw.hpp>
|
||||
#endif
|
||||
|
||||
class AVIOpenDMLHeader
|
||||
{
|
||||
public:
|
||||
AVIOpenDMLHeader();
|
||||
virtual ~AVIOpenDMLHeader();
|
||||
bool read(File &inFile);
|
||||
DWORD totalFrames(void)const;
|
||||
private:
|
||||
DWORD mTotalFrames;
|
||||
};
|
||||
|
||||
inline
|
||||
DWORD AVIOpenDMLHeader::totalFrames(void)const
|
||||
{
|
||||
return mTotalFrames;
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user