diff options
Diffstat (limited to 'SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.h')
-rw-r--r-- | SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.h b/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.h new file mode 100644 index 0000000..4e3cef1 --- /dev/null +++ b/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.h @@ -0,0 +1,9 @@ +namespace Swift { + class AutoUpdater; + class String; + + class PlatformAutoUpdaterFactory { + public: + AutoUpdater* createAutoUpdater(const String& appcastURL); + }; +} |