Olivier Smeesters / Mbed 2 deprecated DtmfKit

Dependencies:   mbed ExtTextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dtmf_generator.hpp Source File

dtmf_generator.hpp

00001 #ifndef _DTMF_GENERATOR_HPP
00002 #define _DTMF_GENERATOR_HPP
00003 
00004 #include <string>
00005 
00006 class DtmfGenerator {
00007 public:
00008     virtual void play(char ch) = 0;
00009     virtual void stop() = 0;
00010     
00011     virtual ~DtmfGenerator() {}
00012 };
00013 
00014 #endif