parser/htmlparser/src/nsHTMLTokenizer.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/parser/htmlparser/src/nsHTMLTokenizer.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,34 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +
    1.10 +/**
    1.11 + * MODULE NOTES:
    1.12 + * @update  gess 4/1/98
    1.13 + * 
    1.14 + */
    1.15 +
    1.16 +#ifndef __NSHTMLTOKENIZER
    1.17 +#define __NSHTMLTOKENIZER
    1.18 +
    1.19 +#include "mozilla/Attributes.h"
    1.20 +#include "nsISupports.h"
    1.21 +#include "nsITokenizer.h"
    1.22 +
    1.23 +#ifdef _MSC_VER
    1.24 +#pragma warning( disable : 4275 )
    1.25 +#endif
    1.26 +
    1.27 +class nsHTMLTokenizer MOZ_FINAL : public nsITokenizer {
    1.28 +public:
    1.29 +  
    1.30 +  NS_DECL_ISUPPORTS
    1.31 +  NS_DECL_NSITOKENIZER
    1.32 +  nsHTMLTokenizer();
    1.33 +};
    1.34 +
    1.35 +#endif
    1.36 +
    1.37 +

mercurial