mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
21 lines
406 B
C++
Executable file
21 lines
406 B
C++
Executable file
struct WindowManager {
|
|
struct WindowList {
|
|
Window *window;
|
|
string name;
|
|
string geometry;
|
|
};
|
|
vector<WindowList> windowList;
|
|
|
|
void append(Window *window, const string &name);
|
|
|
|
string geometry(const Geometry &geometry);
|
|
Geometry geometry(const string &geometry);
|
|
|
|
void loadGeometry();
|
|
void saveGeometry();
|
|
|
|
private:
|
|
configuration config;
|
|
};
|
|
|
|
extern WindowManager *windowManager;
|