2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef _nsDocAccessibleWrap_H_
|
|
|
|
#define _nsDocAccessibleWrap_H_
|
|
|
|
|
|
|
|
#include "nsDocAccessible.h"
|
|
|
|
|
2010-04-23 13:34:41 -07:00
|
|
|
class nsDocAccessibleWrap: public nsDocAccessible
|
|
|
|
{
|
|
|
|
public:
|
2012-02-09 08:49:17 -08:00
|
|
|
nsDocAccessibleWrap(nsIDocument* aDocument, nsIContent* aRootContent,
|
|
|
|
nsIPresShell* aPresShell);
|
2010-06-11 01:23:18 -07:00
|
|
|
virtual ~nsDocAccessibleWrap();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-23 13:34:41 -07:00
|
|
|
};
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-23 13:34:41 -07:00
|
|
|
#endif
|