summaryrefslogtreecommitdiffstats
path: root/ue4/mycpu/mycpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ue4/mycpu/mycpu.cpp')
-rw-r--r--ue4/mycpu/mycpu.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/ue4/mycpu/mycpu.cpp b/ue4/mycpu/mycpu.cpp
index aefe0cb..7f45d33 100644
--- a/ue4/mycpu/mycpu.cpp
+++ b/ue4/mycpu/mycpu.cpp
@@ -29,7 +29,19 @@
29using namespace std; 29using namespace std;
30namespace po = boost::program_options; 30namespace po = boost::program_options;
31 31
32/* TODO */ 32/**
33 * @func cpu_run
34 * @brief template for executing cpu with different datatype
35 * @param me string to name of me
36 * @param vm po::variables_map
37 * @param registers number of registers
38 * @param datatype instance of datatype
39 * @return -
40 * @globalvars none
41 * @exception none
42 * @pre none
43 * @post none
44 */
33template<class T> 45template<class T>
34void cpu_run(string& me, po::variables_map& vm, unsigned registers, T& datatype) 46void cpu_run(string& me, po::variables_map& vm, unsigned registers, T& datatype)
35{ 47{