blob: 034a941983fde129108b30d39ff14e2b047fd8a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2013 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <QString>
#include <Swiften/Elements/StatusShow.h>
namespace Swift {
QString statusShowTypeToIconPath(StatusShow::Type type);
}
|