X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fauthenticator.h;fp=src%2Fcore%2Fauthenticator.h;h=97091efabd2e655f315506081763d5e9290e20b3;hb=f77a0b720ed58a2b68876b9320742b81b6df871f;hp=ce8a42afdba747ec8d11256be80d8b9ba523ca2f;hpb=4b0caf61565c8791efba283bbcaf73530b9feafc;p=quassel.git diff --git a/src/core/authenticator.h b/src/core/authenticator.h index ce8a42af..97091efa 100644 --- a/src/core/authenticator.h +++ b/src/core/authenticator.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,10 +18,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef AUTHENTICATOR_H -#define AUTHENTICATOR_H +#pragma once -#include +#include +#include +#include +#include #include "types.h" @@ -34,9 +36,9 @@ public: virtual ~Authenticator() {}; enum State { - IsReady, // ready to go - NeedsSetup, // need basic setup (ask the user for input) - NotAvailable // remove the authenticator backend from the list of avaliable authenticators. + IsReady, // ready to go + NeedsSetup, // need basic setup (ask the user for input) + NotAvailable // remove the authenticator backend from the list of avaliable authenticators. }; @@ -91,5 +93,3 @@ public slots: private: }; - -#endif