QTfrontend/AutoUpdater.h
author smxx
Wed, 03 Feb 2010 13:02:28 +0000
changeset 2742 21c0d2e69753
parent 2266 289dc8e51210
child 2948 3f21a9dc93d0
permissions -rw-r--r--
Frontend: + Changed save and demo file extensions to ".<protocol>.hwd" and ".<protocol>.hws" to make file associations easier/constant + Added icons to savegame and demo file list (might require some redrawing/updating)

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
	public:
		virtual ~AutoUpdater();

		virtual void checkForUpdates() = 0;
};

#endif