Skip to content
Snippets Groups Projects
Commit 9716e352 authored by Bolla Péter's avatar Bolla Péter
Browse files

Upload New File

parent 500a22b9
Branches
No related tags found
No related merge requests found
app.hpp 0 → 100644
#ifndef APP_HPP
#define APP_HPP
#include <string>
#include <vector>
class Widget;
class App
{
protected:
std::vector<Widget*> widgets;
public:
App(int, int);
virtual ~App();
void register_widget(Widget*);
void event_loop();
};
#endif // APP_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment