diff options
| author | a1xd <[email protected]> | 2021-09-22 20:49:04 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-09-22 20:49:04 -0400 |
| commit | 8a4b6f57758338d5537d4671184099a4728a8cdd (patch) | |
| tree | df36529a344d5d21ff11f5ba021ec80afb4b68a4 /wrapper/wrapper_io.hpp | |
| parent | Merge pull request #87 from matthewstrasiotto/streamer_mode (diff) | |
| parent | improve converter + docs (diff) | |
| download | rawaccel-8a4b6f57758338d5537d4671184099a4728a8cdd.tar.xz rawaccel-8a4b6f57758338d5537d4671184099a4728a8cdd.zip | |
Merge pull request #105 from a1xd/1.5.x
v1.5
Diffstat (limited to 'wrapper/wrapper_io.hpp')
| -rw-r--r-- | wrapper/wrapper_io.hpp | 25 |
1 files changed, 0 insertions, 25 deletions
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 <rawaccel-error.hpp> -#include <rawaccel-settings.h> -#include <rawaccel-version.h> - -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())) {} -}; |