blob: 71d7d089820fe15c331c7c4be825ae3eabf034e7 [file] [log] [blame]
/*
* DebugConsole.h
*
* Created on: Mar 24, 2011
* Author: Anis Kadri
*/
#ifndef DEBUGCONSOLE_H_
#define DEBUGCONSOLE_H_
#include "PhoneGapCommand.h"
class DebugConsole: public PhoneGapCommand {
public:
DebugConsole(Web* pWeb);
virtual ~DebugConsole();
public:
void Run(const String& command);
private:
void CleanUp(String& str);
void Log(String& statement, String& logLevel);
};
#endif /* DEBUGCONSOLE_H_ */