QTfrontend/util/platform/AutoUpdater.h
author unc0rr
Wed, 03 Apr 2013 00:03:46 +0400
branchwebgl
changeset 8839 caa57115d7ea
parent 8381 588a8e6e2041
permissions -rw-r--r--
Fixes to make pas2c parse this

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
        virtual void checkForUpdatesNow() = 0;
};

#endif