diff options
author | Adam <Adam@anope.org> | 2014-02-07 13:02:20 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-02-07 13:02:20 -0500 |
commit | 5327becf41beda4487f077a3f0157f7013ec6f13 (patch) | |
tree | 4cd988954f8147de723646b2087f8f44a63a03c8 /include/modules/set_misc.h | |
parent | f43c99c5cc1cb1cf9f33e9b28f78b9f79a2a4023 (diff) |
Allow other modules to be able to view and modify cs and ns set_misc data
Diffstat (limited to 'include/modules/set_misc.h')
-rw-r--r-- | include/modules/set_misc.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/modules/set_misc.h b/include/modules/set_misc.h new file mode 100644 index 000000000..d22d02798 --- /dev/null +++ b/include/modules/set_misc.h @@ -0,0 +1,17 @@ +/* + * (C) 2003-2014 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; + + MiscData() { } + virtual ~MiscData() { } +}; + |