This should allow concurrency in the plugins to be independent from their container. Contains also some work on the system for registering plugins.
14 lines
320 B
C++
14 lines
320 B
C++
#include "ToolbarLocation.h"
|
|
|
|
ToolbarLocation::ToolbarLocation() = default;
|
|
|
|
ToolbarLocation::ToolbarLocation(QString toolbar, QString group, int position)
|
|
: m_toolbar(std::move(toolbar))
|
|
, m_group(std::move(group))
|
|
, m_position(position)
|
|
{}
|
|
|
|
bool ToolbarLocation::isEmpty() const
|
|
{
|
|
return m_toolbar.isEmpty();
|
|
}
|