Bug 1855360 - Fix the skip-if syntax. a=bustage-fix
[gecko.git] / parser / htmlparser / CNavDTD.h
blob6b4c2511a90c345c593ae42e9310ef39c9eec741
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set sw=2 ts=2 et tw=78: */
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/. */
7 #ifndef NS_NAVHTMLDTD__
8 #define NS_NAVHTMLDTD__
10 #include "nsIDTD.h"
11 #include "nsISupports.h"
12 #include "nsCOMPtr.h"
14 #ifdef _MSC_VER
15 # pragma warning(disable : 4275)
16 #endif
18 class CNavDTD : public nsIDTD {
19 #ifdef _MSC_VER
20 # pragma warning(default : 4275)
21 #endif
23 virtual ~CNavDTD();
25 public:
26 CNavDTD();
28 NS_DECL_ISUPPORTS
29 NS_DECL_NSIDTD
32 #endif