summaryrefslogtreecommitdiff
path: root/include/modules/set_misc.h
blob: c056c4c98253a7271226c28d6a4ce3f7e0ec6d57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *
 * (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;
};