blob: 1df2bfa3afc70682658e1e2aa807c29719f000e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "Swiften/Application/MacOSX/MacOSXApplication.h"
namespace Swift {
MacOSXApplication::MacOSXApplication(const String& name) : Application(name) {
}
ApplicationMessageDisplay* MacOSXApplication::getApplicationMessageDisplay() {
return &messageDisplay_;
}
boost::filesystem::path MacOSXApplication::getSettingsDir() const {
boost::filesystem::path result(getHomeDir() / "Library/Application Support" / getName().getUTF8String());
boost::filesystem::create_directory(result);
return result;
}
}
|