adding in header files for massive checkins. reviewed akkana, mcc

This commit is contained in:
mjudge%netscape.com 1999-12-15 03:35:44 +00:00
Родитель 074e45276e
Коммит 2bb3f51b95
1 изменённых файлов: 52 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,52 @@
/* -*- 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) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
#ifndef NS_IEDITOR_CONTROLLER_H
#define NS_IEDITOR_CONTROLLER_H
#define NS_IEDITORCONTROLLER_IID_STR "075F6CB1-B26D-11d3-9933-00108301233C"
#define NS_IEDITORCONTROLLER_IID \
{ 0x75f6cb1, 0xb26d, 0x11d3, \
{ 0x99, 0x33, 0x0, 0x10, 0x83, 0x1, 0x23, 0x3c }}
class nsIHTMLContent;
class nsIEditor;
class nsIEditorController : public nsISupports
{
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IEDITORCONTROLLER_IID)
/** set the content for this controller instance */
NS_IMETHOD SetContent(nsIHTMLContent *aContent) = 0;
/** set the editor for this controller. Mutually exclusive with setContent*/
NS_IMETHOD SetEditor(nsIEditor *aEditor) = 0;
};
#endif //NS_IEDITOR_CONTROLLER_H