Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WindowPosition.hpp « src « profiler - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b55da28382f5d7ce98e356262ef5e0c6857f71ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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