From 14bde56daf188bfc027dc8ead5b45ec0aa1109d6 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Thu, 1 Apr 2021 01:51:31 -0400 Subject: update rest grapher is still broken refactored io / error handling a bit --- wrapper/wrapper_io.hpp | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 wrapper/wrapper_io.hpp (limited to 'wrapper/wrapper_io.hpp') diff --git a/wrapper/wrapper_io.hpp b/wrapper/wrapper_io.hpp deleted file mode 100644 index 6b94e46..0000000 --- a/wrapper/wrapper_io.hpp +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include -#include -#include - -using namespace rawaccel; -using namespace System; - -struct wrapper_io { - static void writeToDriver(const settings&); - static void readFromDriver(settings&); - static void getDriverVersion(version_t&); -}; - -public ref struct DriverIOException : public IO::IOException { -public: - DriverIOException() {} - DriverIOException(String^ what) : IO::IOException(what) {} -}; - -public ref struct DriverNotInstalledException : public DriverIOException { - DriverNotInstalledException() : - DriverIOException(gcnew String(install_error().what())) {} -}; -- cgit v1.2.3