summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu/cprogram.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue3/mycpu/cprogram.h')
-rw-r--r--ue3/mycpu/cprogram.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ue3/mycpu/cprogram.h b/ue3/mycpu/cprogram.h
index c145832..27e7647 100644
--- a/ue3/mycpu/cprogram.h
+++ b/ue3/mycpu/cprogram.h
@@ -1,7 +1,7 @@
1/** 1/**
2 * @module cprogram 2 * @module cprogram
3 * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348) 3 * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348)
4 * @brief TODO 4 * @brief CProgram extends std::vector and adds a method for parsing programfile
5 * @date 10.05.2009 5 * @date 10.05.2009
6 */ 6 */
7 7
@@ -16,7 +16,8 @@
16/** 16/**
17 * @class CProgram 17 * @class CProgram
18 * 18 *
19 * TODO 19 * CProgram extends std::vector and adds a method for parsing
20 * programfile. This adds instances of CInstruction to CProgram itself.
20 */ 21 */
21class CProgram 22class CProgram
22 : public std::vector<CInstruction *> 23 : public std::vector<CInstruction *>