#include "msdfgen.h"
/**
*
*/
template
class Bitmap {
public:
Bitmap();
Bitmap(int width, int height);
private:
T *pixels;
int w, h;
};
/**
*
*/
template
class BitmapRef {
public:
BitmapRef();
BitmapRef(int width, int height);
private:
T *pixels;
int w, h;
};
/**
*
*/
template
class BitmapConstRef {
public:
BitmapConstRef();
BitmapConstRef(int width, int height);
private:
T *pixels;
int w, h;
};