blob: aff572bfc1eb8a3aaa79497e4c31552936d40009 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include <rawaccel-settings.h>
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 {};
public ref struct DriverWriteCDException : public DriverIOException {};
|