Everything works except AMPM and snooze

Dependencies:   4DGL-uLCD-SE EthernetInterface HTTPClient NTPClient PinDetect SDFileSystem mbed-rpc mbed-rtos mbed wave_player

Fork of ECE4180_FinalProject by Paul Rabbat

RPCType.h

Committer:
adaruna3
Date:
2014-12-03
Revision:
9:add6ce18f1b7
Parent:
0:0a99e3fc2a46

File content as of revision 9:add6ce18f1b7:

#ifndef RPCTYPE_H
#define RPCTYPE_H

#include <list>

class RPCType
{
    public :
        
        static RPCType& instance();
        
        void register_types();
        
        bool is_supported_type(char *type);
        
    private :

        RPCType();
        std::list<char*> supported_types;
};

#endif