2001-11-28 06:13:11 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2005-09-09 18:03:47 +00:00
|
|
|
/* vim: set sw=2 ts=2 et tw=78: */
|
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/. */
|
1998-04-22 18:32:49 +00:00
|
|
|
|
|
|
|
#ifndef NS_NAVHTMLDTD__
|
|
|
|
#define NS_NAVHTMLDTD__
|
|
|
|
|
1998-04-22 23:56:57 +00:00
|
|
|
#include "nsIDTD.h"
|
1998-07-02 08:14:22 +00:00
|
|
|
#include "nsISupports.h"
|
2013-08-12 15:28:41 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1998-04-22 18:32:49 +00:00
|
|
|
|
2003-04-02 22:45:08 +00:00
|
|
|
#ifdef _MSC_VER
|
1998-07-20 15:39:48 +00:00
|
|
|
#pragma warning( disable : 4275 )
|
|
|
|
#endif
|
|
|
|
|
2001-11-28 06:13:11 +00:00
|
|
|
class CNavDTD : public nsIDTD
|
|
|
|
{
|
2003-04-02 22:45:08 +00:00
|
|
|
#ifdef _MSC_VER
|
1998-07-20 15:39:48 +00:00
|
|
|
#pragma warning( default : 4275 )
|
|
|
|
#endif
|
1998-07-13 21:13:09 +00:00
|
|
|
|
2014-06-27 18:41:03 +00:00
|
|
|
virtual ~CNavDTD();
|
|
|
|
|
2001-11-28 06:13:11 +00:00
|
|
|
public:
|
1998-04-22 23:56:57 +00:00
|
|
|
CNavDTD();
|
1998-06-17 23:13:28 +00:00
|
|
|
|
2013-08-12 15:28:41 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
2005-11-24 00:14:25 +00:00
|
|
|
NS_DECL_NSIDTD
|
1998-04-22 18:32:49 +00:00
|
|
|
};
|
|
|
|
|
2013-08-12 15:28:41 +00:00
|
|
|
#endif
|
1998-04-22 18:32:49 +00:00
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
|
|
|
|
|