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
|
|
|
|
2012-05-29 05:18:45 +04:00
|
|
|
#include "AccessibleWrap.h"
|
2003-04-02 03:48:25 +04:00
|
|
|
|
2012-11-18 06:01:44 +04:00
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
2003-04-02 03:48:25 +04:00
|
|
|
//-----------------------------------------------------
|
2017-07-06 15:00:35 +03:00
|
|
|
// construction
|
2003-04-02 03:48:25 +04:00
|
|
|
//-----------------------------------------------------
|
2012-05-29 05:18:45 +04:00
|
|
|
AccessibleWrap::AccessibleWrap(nsIContent* aContent, DocAccessible* aDoc)
|
|
|
|
: Accessible(aContent, aDoc) {}
|
2003-04-02 03:48:25 +04:00
|
|
|
|
|
|
|
//-----------------------------------------------------
|
|
|
|
// destruction
|
|
|
|
//-----------------------------------------------------
|
2012-05-29 05:18:45 +04:00
|
|
|
AccessibleWrap::~AccessibleWrap() {}
|