2011-08-31 15:39:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
|
2012-05-21 11:12:37 +00: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 15:39:39 +00:00
|
|
|
|
2013-06-20 00:59:09 +00:00
|
|
|
#ifndef JSDebugger_h
|
|
|
|
#define JSDebugger_h
|
2011-08-31 15:39:39 +00:00
|
|
|
|
|
|
|
#include "IJSDebugger.h"
|
2012-06-20 03:43:15 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-08-31 15:39:39 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace jsdebugger {
|
|
|
|
|
2012-06-20 03:43:15 +00:00
|
|
|
class JSDebugger MOZ_FINAL : public IJSDebugger
|
2011-08-31 15:39:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_IJSDEBUGGER
|
|
|
|
|
|
|
|
JSDebugger();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~JSDebugger();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 00:59:09 +00:00
|
|
|
#endif /* JSDebugger_h */
|