11 lines
139 B
C++
11 lines
139 B
C++
|
|
#include "MenuPath.h"
|
|||
|
|
|
|||
|
|
MenuPath::MenuPath() = default;
|
|||
|
|
|
|||
|
|
MenuPath::MenuPath(QString menu_path)
|
|||
|
|
: m_menuPath(std::move(menu_path))
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|