X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fserialize.h;h=192fd29d3cdba3b44be69178b9746fea336d58a3;hb=635cb9d65f6d7f6758ae8ed874da00c8d94b6e39;hp=2ee23e2eff4f68afd6850d7d1a328e48fd15bb90;hpb=c61a37790d08d75f5c355487442865999afbf309;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/serialize.h b/include/serialize.h index 2ee23e2ef..192fd29d3 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -1,7 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2019 Peter Powell + * Copyright (C) 2019-2020 Sadie Powell * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -82,19 +82,19 @@ class CoreExport Serializable /** Stores the serialised data against the specified key. * @param key The key by which this serialised data should be stored against. - * @param out The serialised data to store. + * @param value The serialised data to store. */ Data& Store(const std::string& key, const Data& value); /** Stores the value against the specified key. * @param key The key by which this value should be stored against. - * @param out The value to store. + * @param value The value to store. */ Data& Store(const std::string& key, const std::string& value); /** Stores the value against the specified key. The value will be converted to a string using ConvToStr. * @param key The key by which this value should be stored against. - * @param out The value to store. + * @param value The value to store. */ template Data& Store(const std::string& key, const T& value)