]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/extensible.h
Minor cleanup and documentation improvements.
[user/henk/code/inspircd.git] / include / extensible.h
index f3eeabdcf462f0185ab0bdba0b2ba56aaf18afff..6c31468848c2d6d85b656c0e8189956972acafdc 100644 (file)
@@ -1,6 +1,9 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
+ *   Copyright (C) 2013, 2017-2019 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2014-2015 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
@@ -51,7 +54,7 @@ class CoreExport ExtensionItem : public ServiceProvider, public usecountbase
        /** Initializes an instance of the ExtensionItem class.
         * @param key The name of the extension item (e.g. ssl_cert).
         * @param exttype The type of Extensible that this ExtensionItem applies to.
-        * @param owner The module which created this ExtensionItem 
+        * @param owner The module which created this ExtensionItem.
         */
        ExtensionItem(const std::string& key, ExtensibleType exttype, Module* owner);
 
@@ -168,10 +171,10 @@ class CoreExport Extensible
         */
        void FreeAllExtItems();
 
-       /** @copydoc Serializable::Deserialize. */
+       /** @copydoc Serializable::Deserialize */
        bool Deserialize(Data& data) CXX11_OVERRIDE;
 
-       /** @copydoc Serializable::Deserialize. */
+       /** @copydoc Serializable::Deserialize */
        bool Serialize(Serializable::Data& data) CXX11_OVERRIDE;
 };