X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/include/stg/auth.h diff --git a/include/stg/auth.h b/include/stg/auth.h index f597f6d1..7f4db2b8 100644 --- a/include/stg/auth.h +++ b/include/stg/auth.h @@ -18,21 +18,19 @@ * Author : Boris Mikhailenko */ - /* - $Revision: 1.6 $ - $Date: 2009/03/18 17:24:57 $ - */ - -#ifndef AUTH_H -#define AUTH_H +#pragma once #include "plugin.h" -#include "message.h" -#include "noncopyable.h" -class AUTH : public PLUGIN { -public: - virtual int SendMessage(const STG_MSG & msg, uint32_t ip) const = 0; +#include + +namespace STG +{ + +struct Message; + +struct Auth : Plugin { + virtual int SendMessage(const Message& msg, uint32_t ip) const = 0; }; -#endif +}