| 233 | IE_CORE_DEFINERUNTIMETYPED( State ); |
| 234 | |
| 235 | State::State( bool complete ) |
| 236 | : m_implementation( new Implementation( complete ) ) |
| 237 | { |
| 238 | } |
| 239 | |
| 240 | State::State( const State &other ) |
| 241 | : m_implementation( new Implementation( *(other.m_implementation) ) ) |
no outgoing calls
no test coverage detected