Fennel: /home/pub/open/dev/fennel/calculator/ExtendedInstructionTable.cpp Source File (original) (raw)
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 #include "fennel/common/CommonPreamble.h" 00024 #include "fennel/calculator/ExtendedInstructionTable.h" 00025 00026 FENNEL_BEGIN_NAMESPACE 00027 00028 string 00029 ExtendedInstructionTable::signatures() 00030 { 00031 ostringstream s(""); 00032 00033 map<string, ExtendedInstructionDef *>::iterator i = _defsByName.begin(); 00034 map<string, ExtendedInstructionDef *>::iterator end = _defsByName.end(); 00035 00036 while (i != end) { 00037 s << (*i).first << endl; 00038 i++; 00039 } 00040 return s.str(); 00041 } 00042 00043 FENNEL_END_NAMESPACE 00044 00045