Files
Mozilla/mozilla/embedding/components/jsconsole/src/nsJSConsoleService.h
pinkerton%netscape.com ca6bc5c9f0 separating jsconsole into its own component. r=damn/sr=hyatt bug#73127.
git-svn-id: svn://10.0.0.236/trunk@94451 18797224-902f-48f8-a5cc-f745e15eee43
2001-05-10 03:12:59 +00:00

51 lines
1.4 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Mozilla Communicator client code.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are
* Copyright (C) 2001 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
#ifndef __nsJSConsoleService_h
#define __nsJSConsoleService_h
// {35807600-35bd-11d5-bb6f-b9f2e9fee03c}
#define NS_JSCONSOLESERVICE_CID \
{ 0x35807600, 0x35bd, 0x11d5, {0xbb, 0x6f, 0xb9, 0xf2, 0xe9, 0xfe, 0xe0, 0x3c}}
#define NS_JSCONSOLESERVICE_CONTRACTID \
"@mozilla.org/embedcomp/jsconsole-service;1"
#include "nsIJSConsoleService.h"
class nsIDOMWindow;
class nsJSConsoleService: public nsIJSConsoleService
{
public:
nsJSConsoleService();
virtual ~nsJSConsoleService();
NS_DECL_NSIJSCONSOLESERVICE
NS_DECL_ISUPPORTS
};
#endif