| 3 | map<string, sqltype*> sqltype::typemap; |
| 4 | |
| 5 | sqltype * sqltype::get(string n) |
| 6 | { |
| 7 | if (typemap.count(n)) |
| 8 | return typemap[n]; |
| 9 | else |
| 10 | return typemap[n] = new sqltype(n); |
| 11 | } |
| 12 | |
| 13 | bool sqltype::consistent(struct sqltype *rvalue) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected