Cellular library for MTS Socket Modem Arduino Shield devices from Multi-Tech Systems

Dependents:   mtsas mtsas mtsas mtsas

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CellularFactory.h Source File

CellularFactory.h

00001 #ifndef CELLULARFACTORY_H
00002 #define CELLULARFACTORY_H
00003 
00004 #include "UIP.h"
00005 #include "EasyIP.h"
00006 #include "MTSBufferedIO.h"
00007 
00008 namespace mts {
00009 
00010 class CellularFactory
00011 {
00012 public:
00013     static Cellular* create(MTSBufferedIO* io);
00014 };
00015 
00016 }
00017 
00018 #endif