1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 22:06:39 +02:00
Files
anope/include/modules/set_misc.h
T
Sadie Powell 7d1047490e Consistently use #pragma once across all header files.
This replaces a mixture of no include guards, ANOPE_FOO_H, and FOO_H.
2022-01-04 12:10:32 +00:00

21 lines
297 B
C++

/*
*
* (C) 2003-2021 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#pragma once
struct MiscData
{
Anope::string object;
Anope::string name;
Anope::string data;
virtual ~MiscData() = default;
protected:
MiscData() = default;
};