Selaa lähdekoodia

Add documentation string for method

dustin.born 7 vuotta sitten
vanhempi
commit
893186b5a3
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. 5 1
      code_boost/src/cxx/botnet_comm_processor.cpp

+ 5 - 1
code_boost/src/cxx/botnet_comm_processor.cpp

@@ -17,7 +17,11 @@ botnet_comm_processor::botnet_comm_processor(const py::list &messages_pyboost){
 botnet_comm_processor::botnet_comm_processor(){
 }
 
-
+/**
+ * Set the messages of this communication processor.
+ * @param messages_pyboost The abstract communication messages
+ *    represented as (python) list containing (python) dicts.
+ */
 void botnet_comm_processor::set_messages(const py::list &messages_pyboost){
     messages.clear();
     for (int i = 0; i < len(messages_pyboost); i++){