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