This should allow concurrency in the plugins to be independent from their container. Contains also some work on the system for registering plugins.
8 lines
181 B
C++
8 lines
181 B
C++
#include "MenuLocation.h"
|
|
|
|
MenuLocation::MenuLocation() = default;
|
|
|
|
MenuLocation::MenuLocation(MenuPath path, int position)
|
|
: m_path(std::move(path))
|
|
, m_position(position)
|
|
{}
|