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

Dependents:   mtsas mtsas mtsas mtsas

Cellular/CellularFactory.h

Committer:
Leon Lindenfelser
Date:
2018-02-19
Revision:
82:5b33b670adb7
Parent:
26:2b769ed8de4f

File content as of revision 82:5b33b670adb7:

#ifndef CELLULARFACTORY_H
#define CELLULARFACTORY_H

#include "UIP.h"
#include "EasyIP.h"
#include "MTSBufferedIO.h"

namespace mts {

class CellularFactory
{
public:
    static Cellular* create(MTSBufferedIO* io);
};

}

#endif