| 845 | typedef AutoArray<Argument> base; |
| 846 | |
| 847 | public: |
| 848 | RString Get(RString name) const |
| 849 | { |
| 850 | for (int i = 0; i < Size(); i++) |
| 851 | if (base::Get(i).name == name) |
| 852 | return base::Get(i).value; |
| 853 | return RString(); |
| 854 | } |
| 855 | template <class Type> |
| 856 | int Set(RString name, const Type& value) |
no test coverage detected