JSDebugger.h (626B)
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- 2 */ 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #ifndef JSDebugger_h 8 #define JSDebugger_h 9 10 #include "IJSDebugger.h" 11 12 namespace mozilla { 13 namespace jsdebugger { 14 15 class JSDebugger final : public IJSDebugger { 16 public: 17 NS_DECL_ISUPPORTS 18 NS_DECL_IJSDEBUGGER 19 20 JSDebugger(); 21 22 private: 23 ~JSDebugger(); 24 }; 25 26 } // namespace jsdebugger 27 } // namespace mozilla 28 29 #endif /* JSDebugger_h */