pgLab/pglab/plugin_support/MenuPath.cpp
eelke 15bee33076 Made step to remove ASyncWindow in favour of usage of Future and FutureWatcher.
This should allow concurrency in the plugins to be independent from their container.

Contains also some work on the system for registering plugins.
2018-12-30 15:46:15 +01:00

10 lines
139 B
C++

#include "MenuPath.h"
MenuPath::MenuPath() = default;
MenuPath::MenuPath(QString menu_path)
: m_menuPath(std::move(menu_path))
{
}