Creating reference map widget

This commit is contained in:
Dan Paulat 2021-06-23 21:48:08 -05:00
parent 760e8a52a1
commit b1e00cca83
8 changed files with 631 additions and 30 deletions

View file

@ -1,41 +0,0 @@
#include "main_window.hpp"
#include "./ui_main_window.h"
namespace scwx
{
namespace qt
{
template<typename... Types>
class variant
{
public:
template<typename T>
inline variant(T&& value)
{
}
};
using ValueBase = variant<float, double>;
struct Value : ValueBase
{
using ValueBase::ValueBase;
};
MainWindow::MainWindow(QWidget* parent) :
QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
Value(0.0f);
Value(0.0);
}
MainWindow::~MainWindow()
{
delete ui;
}
} // namespace qt
} // namespace scwx