Project

General

Profile

Statistics
| Branch: | Revision:

root / arduino-1.0 / hardware / arduino / cores / arduino / Server.h @ 58d82c77

History | View | Annotate | Download (111 Bytes)

1
#ifndef server_h
2
#define server_h
3

    
4
class Server : public Print {
5
public:
6
  virtual void begin() =0;
7
};
8

    
9
#endif