1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 09:46:38 +02:00

Move some headers around.

This commit is contained in:
Sadie Powell
2025-03-08 12:22:07 +00:00
parent 9e37a643f1
commit df0cd3ef3e
48 changed files with 55 additions and 55 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
*
* (C) 2003-2025 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#pragma once
class HostRequest
{
protected:
HostRequest() = default;
public:
Anope::string nick;
Anope::string ident;
Anope::string host;
time_t time = 0;
virtual ~HostRequest() = default;
};