QTfrontend/AutoUpdater.h
author unc0rr
Sat, 22 Jan 2011 22:35:53 +0300
branch0.9.15
changeset 4768 d00562929f28
parent 2948 3f21a9dc93d0
child 8284 a874d00df4a4
permissions -rw-r--r--
Disallow isSpace chars at start and end of nicknames and room names

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

#ifndef AUTOUPDATER_H
#define AUTOUPDATER_H

class AutoUpdater
{
    public:
        virtual ~AutoUpdater();

        virtual void checkForUpdates() = 0;
};

#endif