mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
21 lines
296 B
C++
21 lines
296 B
C++
/*
|
|
*
|
|
* (C) 2003-2025 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;
|
|
};
|