blob: 6d16c6811e678ef448fe0ea116a7fcebece0cfcd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "Swiften/Base/String.h"
namespace Swift {
class AutoUpdater;
class PlatformAutoUpdaterFactory {
public:
AutoUpdater* createAutoUpdater(const String& appcastURL);
};
}
|