class Core::Portable::BitmapReference

#include <corebitmap.h>

class BitmapReference
{
public:
    // construction

    BitmapReference(Bitmap* _bitmap = nullptr);
    BitmapReference(const BitmapReference& other);

    // methods

    BitmapReference& assign(Bitmap* _bitmap);
    BitmapReference& operator = (Bitmap* bitmap);
    BitmapReference& operator = (const BitmapReference& other);
    bool isValid() const;
    Bitmap* getBitmap() const;
};