Find instance by name \a s
| 103 | } |
| 104 | /// Find instance by name \a s |
| 105 | static const int* find(const char* s) { |
| 106 | for (int i=0; name[i] != nullptr; i++) |
| 107 | if (!strcmp(s,name[i])) |
| 108 | return qcp[i]; |
| 109 | return nullptr; |
| 110 | } |
| 111 | public: |
| 112 | /// Whether a valid specification has been found |
| 113 | bool valid(void) const { |
no outgoing calls