소스 검색

Add documentation string for method

dustin.born 7 년 전
부모
커밋
893186b5a3
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  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++){