From: Tomek Mrugalski Date: Mon, 19 Oct 2015 00:30:59 +0000 (+0200) Subject: [3682] Added missing description for classesToString X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2f2e0694d6a986154bcead7c79b45741cd00d22;p=thirdparty%2Fkea.git [3682] Added missing description for classesToString --- diff --git a/src/lib/dhcpsrv/mysql_host_data_source.cc b/src/lib/dhcpsrv/mysql_host_data_source.cc index 03299c5acb..7bcb80fc14 100644 --- a/src/lib/dhcpsrv/mysql_host_data_source.cc +++ b/src/lib/dhcpsrv/mysql_host_data_source.cc @@ -496,6 +496,10 @@ public: return (getColumnsInError(error_, columns_, HOST_COLUMNS)); } + /// @brief Converts ClientClasses to a signgle string with coma separated values + /// + /// @param classes classes structure that contains zero or more classes + /// @return a single string with coma separated values std::string classesToString(const ClientClasses& classes) { string txt; bool first = true;