mirror of
https://github.com/anope/anope.git
synced 2026-06-24 18:46:37 +02:00
19 lines
283 B
C++
19 lines
283 B
C++
/*
|
|
*
|
|
* (C) 2003-2021 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
struct MiscData
|
|
{
|
|
Anope::string object;
|
|
Anope::string name;
|
|
Anope::string data;
|
|
|
|
virtual ~MiscData() = default;
|
|
protected:
|
|
MiscData() = default;
|
|
};
|