| 24 | class Structure; |
| 25 | |
| 26 | struct InvalidRemoteObject : public InvalidCopiedMemory |
| 27 | { |
| 28 | const char* what() const noexcept override |
| 29 | { |
| 30 | return "Object copied from remote process is inconsistent"; |
| 31 | } |
| 32 | }; |
| 33 | |
| 34 | class ProcessTracer |
| 35 | { |
no outgoing calls
no test coverage detected