mirror of
https://github.com/anope/anope.git
synced 2026-06-25 21:46:37 +02:00
17 lines
276 B
C
17 lines
276 B
C
/*
|
|
*
|
|
* (C) 2011-2025 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct MyOper final
|
|
: Oper
|
|
, Serializable
|
|
{
|
|
MyOper(const Anope::string &n, OperType *o) : Oper(n, o), Serializable("Oper") { }
|
|
};
|