mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 13:25:23 +00:00
25 lines
326 B
C
25 lines
326 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
#include "SharedTypes.h"
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
class IOStream;
|
||
|
|
|
||
|
|
class QDPictHeader
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
QDPictHeader();
|
||
|
|
bool Load(IOStream *stream);
|
||
|
|
|
||
|
|
int GetVersion() const;
|
||
|
|
const Rect &GetFrame() const;
|
||
|
|
|
||
|
|
private:
|
||
|
|
Rect m_frame;
|
||
|
|
|
||
|
|
int m_pictVersion;
|
||
|
|
};
|
||
|
|
}
|