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