This should allow concurrency in the plugins to be independent from their container. Contains also some work on the system for registering plugins.
10 lines
139 B
C++
10 lines
139 B
C++
#include "MenuPath.h"
|
|
|
|
MenuPath::MenuPath() = default;
|
|
|
|
MenuPath::MenuPath(QString menu_path)
|
|
: m_menuPath(std::move(menu_path))
|
|
{
|
|
}
|
|
|
|
|