| 34 | typedef std::random_access_iterator_tag iterator_category ; |
| 35 | |
| 36 | Proxy_Iterator( ): proxy(){} ; |
| 37 | Proxy_Iterator( const Proxy_Iterator& other) : proxy( other.proxy){} |
| 38 | Proxy_Iterator( const PROXY& proxy_ ) : proxy( proxy_ ){} ; |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected