#ifndef INC_SNAPSHOT_H #define INC_SNAPSHOT_H #include class SnapShot { public: SnapShot(); SnapShot(int w,int h); void shot(); void shotIfRequested(); void request(); void resize(int w,int h); ~SnapShot(); private: bool requested; std::vector pixel; int num; int width,height; int numgif; unsigned int il_id; }; #endif