summaryrefslogtreecommitdiff
path: root/modules/m_xmlrpc_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/m_xmlrpc_main.cpp')
-rw-r--r--modules/m_xmlrpc_main.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/m_xmlrpc_main.cpp b/modules/m_xmlrpc_main.cpp
index 3f7ab71d0..f7e499714 100644
--- a/modules/m_xmlrpc_main.cpp
+++ b/modules/m_xmlrpc_main.cpp
@@ -11,7 +11,8 @@
static Module *me;
-class XMLRPCIdentifyRequest : public IdentifyRequest
+class XMLRPCIdentifyRequest
+ : public IdentifyRequest
{
XMLRPCRequest request;
HTTPReply repl; /* Request holds a reference to the HTTPReply, because we might exist long enough to invalidate it
@@ -50,7 +51,8 @@ public:
}
};
-class MyXMLRPCEvent : public XMLRPCEvent
+class MyXMLRPCEvent
+ : public XMLRPCEvent
{
public:
bool Run(XMLRPCServiceInterface *iface, HTTPClient *client, XMLRPCRequest &request) override
@@ -95,7 +97,8 @@ private:
Anope::string out;
- struct XMLRPCommandReply : CommandReply
+ struct XMLRPCommandReply
+ : CommandReply
{
Anope::string &str;
@@ -275,7 +278,8 @@ private:
}
};
-class ModuleXMLRPCMain : public Module
+class ModuleXMLRPCMain
+ : public Module
{
ServiceReference<XMLRPCServiceInterface> xmlrpc;