X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/90e389f6ec12e60a62c362296ffcf314feb5b03d..51998949e60e2a7e86e4393b315cfb76a58ca80d:/include/stg/auth.h?ds=sidebyside

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 <stg34@stargazer.dp.ua>
  */
 
- /*
- $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 <cstdint>
+
+namespace STG
+{
+
+struct Message;
+
+struct Auth : Plugin {
+    virtual int SendMessage(const Message& msg, uint32_t ip) const = 0;
 };
 
-#endif
+}