1999-01-09 01:09:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MODULE NOTES:
|
|
|
|
* @update gess 4/1/98
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NSHTMLTOKENIZER
|
|
|
|
#define __NSHTMLTOKENIZER
|
|
|
|
|
2013-08-17 11:27:09 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-01-09 01:09:02 +00:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsITokenizer.h"
|
|
|
|
|
2003-04-02 22:45:08 +00:00
|
|
|
#ifdef _MSC_VER
|
1999-01-09 01:09:02 +00:00
|
|
|
#pragma warning( disable : 4275 )
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsHTMLTokenizer final : public nsITokenizer {
|
2014-06-27 18:41:03 +00:00
|
|
|
~nsHTMLTokenizer() {}
|
|
|
|
|
1999-01-09 01:09:02 +00:00
|
|
|
public:
|
2002-01-09 01:37:50 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITOKENIZER
|
2013-08-17 11:27:09 +00:00
|
|
|
nsHTMLTokenizer();
|
1999-01-09 01:09:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|