initial poi manager and types code

This commit is contained in:
AdenKoperczak 2024-10-02 11:34:52 -04:00
parent f8efa20b7c
commit c2209908a0
3 changed files with 169 additions and 0 deletions

View file

@ -0,0 +1,30 @@
#pragma once
#include <scwx/qt/types/poi_types.hpp>
#include <QObject>
namespace scwx
{
namespace qt
{
namespace manager
{
class POIManager : public QObject
{
Q_OBJECT
public:
explicit POIManager();
~POIManager();
private:
class Impl;
std::unique_ptr<Impl> p;
};
} // namespace manager
} // namespace qt
} // namespace scwx