diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-08 18:19:34 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-08 18:19:34 +0100 |
commit | 204f8280f0b6c7f2d81b05a2317d9f03f0abdce5 (patch) | |
tree | 21f380c328fbbf3d8b60298e72b061eccbbad507 | |
parent | 049d75520a89fb081ff8b3c0de8dc65c20e1db70 (diff) | |
download | sciteco-204f8280f0b6c7f2d81b05a2317d9f03f0abdce5.tar.gz |
added comments
-rw-r--r-- | goto.cpp | 4 | ||||
-rw-r--r-- | goto.h | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -166,6 +166,10 @@ goto_table_clear(void) table.clear(); } +/* + * Command states + */ + StateLabel::StateLabel() : State() { transitions['\0'] = this; @@ -6,6 +6,10 @@ #include "sciteco.h" #include "parser.h" +/* + * Command states + */ + class StateLabel : public State { public: StateLabel(); |