blob: 6e48a9620d430c4ea54f093612cfb71f4b3a59a3 [file] [log] [blame]
/*
* Notification.h
*
* Created on: Apr 5, 2011
* Author: Anis Kadri
*/
#ifndef NOTIFICATION_H_
#define NOTIFICATION_H_
#include <FUi.h>
#include <FSystem.h>
#include "PhoneGapCommand.h"
using namespace Osp::System;
using namespace Osp::Ui;
using namespace Osp::Ui::Controls;
class Notification: public PhoneGapCommand {
public:
Notification(Web* pWeb);
virtual ~Notification();
public:
String callbackId;
public:
void Run(const String& command);
void Dialog();
void Vibrate();
void Beep();
};
#endif /* NOTIFICATION_H_ */