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.
This commit is contained in:
parent
a54a063c13
commit
15bee33076
25 changed files with 327 additions and 52 deletions
10
pglab/plugin_support/MenuPath.cpp
Normal file
10
pglab/plugin_support/MenuPath.cpp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#include "MenuPath.h"
|
||||
|
||||
MenuPath::MenuPath() = default;
|
||||
|
||||
MenuPath::MenuPath(QString menu_path)
|
||||
: m_menuPath(std::move(menu_path))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue