Skip to content

Instantly share code, notes, and snippets.

@zenoalbisser
Created December 19, 2011 16:21
Show Gist options
  • Save zenoalbisser/1497832 to your computer and use it in GitHub Desktop.
Save zenoalbisser/1497832 to your computer and use it in GitHub Desktop.
#ifndef PageGuard_h
#define PageGuard_h
#include <QObject>
class PageGuard : public QObject
{
Q_OBJECT
public:
PageGuard(void* page);
void* page() const;
private:
void* m_page;
};
#endif // PageGuard_h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment