mirror of
https://github.com/0015/ThatProject.git
synced 2026-01-12 09:17:42 +03:00
16 lines
193 B
C++
16 lines
193 B
C++
#ifndef Messenger_H_
|
|
#define Messenger_H_
|
|
|
|
#include "twilio.hpp"
|
|
|
|
class Messenger {
|
|
private:
|
|
Twilio *twilio;
|
|
|
|
public:
|
|
Messenger();
|
|
~Messenger();
|
|
void sendMessage(String msg);
|
|
};
|
|
|
|
#endif |