QTfrontend/AutoUpdater.h
author szczur+nemo
Fri, 24 Dec 2010 00:20:18 -0500
changeset 4660 8ff3dead5850
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Add polish translation. Also make it clearer in the commented lines that each line must have a comma

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif