aboutsummaryrefslogtreecommitdiff
path: root/libs/uibase/src/imoinfo.cpp
blob: faa2db9956f0d75663e84d3c722146ead2079770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <uibase/imoinfo.h>

namespace MOBase
{

static QString g_pluginDataPath;

QString IOrganizer::getPluginDataPath()
{
  return g_pluginDataPath;
}

}  // namespace MOBase

namespace MOBase::details
{

void setPluginDataPath(const QString& s)
{
  g_pluginDataPath = s;
}

}  // namespace MOBase::details