2011-08-31 19:39:39 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
|
|
|
*/
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-08-31 19:39:39 +04:00
|
|
|
|
2013-06-20 04:59:09 +04:00
|
|
|
#ifndef JSDebugger_h
|
|
|
|
#define JSDebugger_h
|
2011-08-31 19:39:39 +04:00
|
|
|
|
|
|
|
#include "IJSDebugger.h"
|
2012-06-20 07:43:15 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-08-31 19:39:39 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace jsdebugger {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class JSDebugger final : public IJSDebugger {
|
2011-08-31 19:39:39 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_IJSDEBUGGER
|
|
|
|
|
|
|
|
JSDebugger();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~JSDebugger();
|
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace jsdebugger
|
|
|
|
} // namespace mozilla
|
2011-08-31 19:39:39 +04:00
|
|
|
|
2013-06-20 04:59:09 +04:00
|
|
|
#endif /* JSDebugger_h */
|