Files
Aerofoil/PortabilityLayer/QDPictHeader.h
2020-09-12 13:32:53 -04:00

25 lines
328 B
C++

#pragma once
#include <stdint.h>
#include "SharedTypes.h"
class GpIOStream;
namespace PortabilityLayer
{
class QDPictHeader
{
public:
QDPictHeader();
bool Load(GpIOStream *stream);
int GetVersion() const;
const Rect &GetFrame() const;
private:
Rect m_frame;
int m_pictVersion;
};
}