Skip to content

File main_window.hpp

File List > gui > main_window.hpp

Go to the documentation of this file

#pragma once

#include <QMainWindow>
#include <vector>

#include "utilities/filesystem.hpp"

QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE

class MainWindow : public QMainWindow {
  Q_OBJECT

 public:
  explicit MainWindow(const std::vector<fs::path>& initial_las_files = {});
  ~MainWindow();

 private slots:
  void about();
  void run_blaze();

 private:
  std::unique_ptr<Ui::MainWindow> ui;
};