#pragma once #include using namespace rawaccel; using namespace System; struct wrapper_io { static void writeToDriver(const settings&); static void readFromDriver(settings&); }; public ref struct DriverIOException : public IO::IOException { public: DriverIOException() {} DriverIOException(String^ what) : IO::IOException(what) {} }; public ref struct DriverNotInstalledException : public DriverIOException {};