| 27 | class FieldProxy : public GenericProxy<FieldProxy> { |
| 28 | public: |
| 29 | FieldProxy( CLASS& v, const std::string& name) : |
| 30 | parent(v), field_name(name) {} |
| 31 | |
| 32 | FieldProxy& operator=(const FieldProxy& rhs); |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected