Path: blob/trunk/cpp/imehandler/linux/src/ibusutils.h
2868 views
/*1Copyright 2011 WebDriver committers2Copyright 2011 Google Inc.34Licensed under the Apache License, Version 2.0 (the "License");5you may not use this file except in compliance with the License.6You may obtain a copy of the License at78http://www.apache.org/licenses/LICENSE-2.0910Unless required by applicable law or agreed to in writing, software11distributed under the License is distributed on an "AS IS" BASIS,12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.13See the License for the specific language governing permissions and14limitations under the License.1516Author: [email protected]17*/1819#ifndef IBUSUTILS_H_20#define IBUSUTILS_H_2122#include "imeutils.h"2324/*25* Implementation of the utility class for ibus as defined in the ImeUtils26* class.27*/28class IBusUtils : public ImeUtils {29public:30IBusUtils();31virtual ~IBusUtils() {}32private:33DISALLOW_COPY_AND_ASSIGN(IBusUtils);34};3536#endif // IBUSUTILS_H_373839