diff options
author | Sebastian Reichel <sre@ring0.de> | 2015-08-24 14:18:19 +0200 |
---|---|---|
committer | Sebastian Reichel <sre@ring0.de> | 2015-09-12 17:00:43 +0200 |
commit | 9dce0dfa4cd90e7ce2131e1e5821f54eb3754b26 (patch) | |
tree | 11806709f96f236c87575e7bfbde0d4b244f5863 /src/serial-device/serial-device-interface.vala | |
parent | b3464b4f908197fdb3cf17f25b82e9315f9734a2 (diff) | |
download | serial-barcode-scanner-9dce0dfa4cd90e7ce2131e1e5821f54eb3754b26.tar.bz2 |
input-device: add new daemon
The input-device daemon can be used instead of the serial-device daemon
for barcode scanners, that are connected as HID device.
Diffstat (limited to 'src/serial-device/serial-device-interface.vala')
-rw-r--r-- | src/serial-device/serial-device-interface.vala | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/serial-device/serial-device-interface.vala b/src/serial-device/serial-device-interface.vala deleted file mode 100644 index 572e810..0000000 --- a/src/serial-device/serial-device-interface.vala +++ /dev/null @@ -1,20 +0,0 @@ -/* Copyright 2013, Sebastian Reichel <sre@ring0.de> - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -[DBus (name = "io.mainframe.shopsystem.SerialDevice")] -public interface SerialDevice : Object { - public abstract signal void received_barcode(string barcode); - public abstract void blink(uint duration) throws IOError; -} |