MuseScore  3.4
Music composition and notation
autoUpdater.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2018 Werner Schweer
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2
9 // as published by the Free Software Foundation and appearing in
10 // the file LICENCE.GPL
11 //=============================================================================
12 #ifndef __AUTO_UPDATER_H__
13 #define __AUTO_UPDATER_H__
14 
15 namespace Ms
16 {
18  {
19  public:
20  virtual void checkUpdates() {}
21  virtual void checkForUpdatesNow() {}
22  virtual void cleanup() {}
23  virtual ~GeneralAutoUpdater() {}
24  };
25 
26 } //Ms
27 
28 #endif //__AUTO_UPDATER_H__
virtual ~GeneralAutoUpdater()
Definition: autoUpdater.h:23
Definition: autoUpdater.h:17
virtual void checkUpdates()
Definition: autoUpdater.h:20
Definition: aeolus.cpp:26
virtual void checkForUpdatesNow()
Definition: autoUpdater.h:21
virtual void cleanup()
Definition: autoUpdater.h:22