2003-04-02 03:48:25 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2003-04-02 03:48:25 +04:00
|
|
|
|
|
|
|
/* For documentation of the accessibility architecture,
|
|
|
|
* see http://lxr.mozilla.org/seamonkey/source/accessible/accessible-docs.html
|
|
|
|
*/
|
|
|
|
|
2012-11-18 06:01:44 +04:00
|
|
|
#ifndef mozilla_a11y_AccessibleWrap_h_
|
|
|
|
#define mozilla_a11y_AccessibleWrap_h_
|
2003-04-02 03:48:25 +04:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2021-02-20 02:14:32 +03:00
|
|
|
#include "LocalAccessible.h"
|
2003-04-02 03:48:25 +04:00
|
|
|
|
2012-11-18 06:01:44 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace a11y {
|
|
|
|
|
2021-02-20 02:14:32 +03:00
|
|
|
class AccessibleWrap : public LocalAccessible {
|
2010-06-11 12:23:18 +04:00
|
|
|
public: // construction, destruction
|
2012-05-29 05:18:45 +04:00
|
|
|
AccessibleWrap(nsIContent* aContent, DocAccessible* aDoc);
|
|
|
|
virtual ~AccessibleWrap();
|
2003-04-02 03:48:25 +04:00
|
|
|
};
|
|
|
|
|
2012-11-18 06:01:44 +04:00
|
|
|
} // namespace a11y
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2003-04-02 03:48:25 +04:00
|
|
|
#endif
|