| 1 | #include "../includes/NativeInterface.h" |
| 2 | |
| 3 | NativeInterface::NativeInterface(const std::string &path, const std::vector<std::string> &excludedPaths, std::shared_ptr<EventQueue> queue) { |
| 4 | mNativeInterface.reset(new NativeImplementation(queue, path, excludedPaths)); |
| 5 | } |
| 6 | |
| 7 | NativeInterface::~NativeInterface() { |
| 8 | mNativeInterface.reset(nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected