blob: aa0e00d272df7901b16e0f7235adb55baee8986a [file]
/*
Copyright 2014 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef GOOPY_TSF_DEBUG_H_
#define GOOPY_TSF_DEBUG_H_
#include <string>
#include "base/basictypes.h"
namespace ime_goopy {
namespace tsf {
// A helper class to convert enumerator values to strings. The best practice is
// using this class after DLOG, so these code will not be included in release
// version.
class Debug {
public:
static wstring TMAE_String(DWORD value);
};
} // namespace tsf
} // namespace ime_goopy
#endif // GOOPY_TSF_DEBUG_H_