2006-10-31 10:13:17 +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/. */
|
2006-10-31 10:13:17 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#ifndef nsBidiKeyboard_h_
|
|
|
|
#define nsBidiKeyboard_h_
|
|
|
|
|
2006-10-31 10:13:17 +00:00
|
|
|
#include "nsIBidiKeyboard.h"
|
|
|
|
|
|
|
|
class nsBidiKeyboard : public nsIBidiKeyboard
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIBIDIKEYBOARD
|
|
|
|
|
|
|
|
nsBidiKeyboard();
|
|
|
|
virtual ~nsBidiKeyboard();
|
|
|
|
};
|
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#endif // nsBidiKeyboard_h_
|