1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Extract window position save/load functionality.

This commit is contained in:
Bartosz Taudul
2022-07-25 21:48:06 +02:00
parent 208755ad53
commit 31b6a88923
5 changed files with 88 additions and 42 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef __WINDOWPOSITION_HPP__
#define __WINDOWPOSITION_HPP__
#include <string>
class WindowPosition
{
public:
WindowPosition();
~WindowPosition();
int x, y, w, h, maximize;
private:
void Defaults();
std::string m_fn;
};
#endif