michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* vim: set sw=2 ts=2 et tw=78: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef NS_NAVHTMLDTD__ michael@0: #define NS_NAVHTMLDTD__ michael@0: michael@0: #include "nsIDTD.h" michael@0: #include "nsISupports.h" michael@0: #include "nsCOMPtr.h" michael@0: michael@0: // This class is no longer useful. michael@0: class nsIHTMLContentSink; michael@0: michael@0: #ifdef _MSC_VER michael@0: #pragma warning( disable : 4275 ) michael@0: #endif michael@0: michael@0: class CNavDTD : public nsIDTD michael@0: { michael@0: #ifdef _MSC_VER michael@0: #pragma warning( default : 4275 ) michael@0: #endif michael@0: michael@0: public: michael@0: CNavDTD(); michael@0: virtual ~CNavDTD(); michael@0: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSIDTD michael@0: }; michael@0: michael@0: #endif michael@0: michael@0: michael@0: