summaryrefslogtreecommitdiff
path: root/include/modules/xmlrpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/xmlrpc.h')
-rw-r--r--include/modules/xmlrpc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/modules/xmlrpc.h b/include/modules/xmlrpc.h
index 81d8b3f7e..92ac1fb7e 100644
--- a/include/modules/xmlrpc.h
+++ b/include/modules/xmlrpc.h
@@ -14,7 +14,7 @@ class XMLRPCRequest
{
std::map<Anope::string, Anope::string> replies;
- public:
+public:
Anope::string name;
Anope::string id;
std::deque<Anope::string> data;
@@ -29,14 +29,14 @@ class XMLRPCServiceInterface;
class XMLRPCEvent
{
- public:
+public:
virtual ~XMLRPCEvent() = default;
virtual bool Run(XMLRPCServiceInterface *iface, HTTPClient *client, XMLRPCRequest &request) = 0;
};
class XMLRPCServiceInterface : public Service
{
- public:
+public:
XMLRPCServiceInterface(Module *creator, const Anope::string &sname) : Service(creator, "XMLRPCServiceInterface", sname) { }
virtual void Register(XMLRPCEvent *event) = 0;