mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +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;
|
|
};
|
|
}
|