source: avrstuff/EPRoxygen/device.h@ d09030d

main
Last change on this file since d09030d was d09030d, checked in by Adrien Destugues <pulkomandy@…>, 12 years ago

Add EPRoxygen, driver for SEEIT EPR-02 parallel port EEPROM burner for UNIX (FreeBSD only so far).
Not complete at all.

git-svn-id: svn://pulkomandy.tk/avrstuff@58 c6672c3c-f6b6-47f9-9001-1fd6b12fecbe

  • Property mode set to 100644
File size: 207 bytes
Line 
1#ifndef _DEVICE_H_
2#define _DEVICE_H_
3
4#pragma once
5
6class Device {
7 public:
8 virtual void read(const char* file) = 0;
9 virtual void write(const char* file) = 0;
10 virtual void erase(void) = 0;
11};
12
13#endif
Note: See TracBrowser for help on using the repository browser.