Commit 6b98a38b authored by Hiroshi Sumita's avatar Hiroshi Sumita
Browse files

Modify include guards to avoid a conflict.

BUG=None
TEST=Manual

Review URL: http://codereview.appspot.com/5305042
parent 323f0787
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -20,8 +20,8 @@
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#ifndef __BOPOMOFO_H_
#define __BOPOMOFO_H_
#ifndef __PYZY_BOPOMOFO_H_
#define __PYZY_BOPOMOFO_H_

#define MAX_BOPOMOFO_LEN (4)

@@ -78,4 +78,4 @@ const static wchar_t bopomofo_char[] = {
    L'ˊ', L'ˇ', L'ˋ', L'˙',
};

#endif /* __BOPOMOFO_H_ */
#endif /* __PYZY_BOPOMOFO_H_ */
+3 −3
Original line number Diff line number Diff line
@@ -20,8 +20,8 @@
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#ifndef __BOPOMOFO_CONTEXT_H_
#define __BOPOMOFO_CONTEXT_H_
#ifndef __PYZY_BOPOMOFO_CONTEXT_H_
#define __PYZY_BOPOMOFO_CONTEXT_H_

#include "PyZyPhoneticContext.h"

@@ -67,4 +67,4 @@ protected:

};

#endif  // __BOPOMOFO_CONTEXT_H_
#endif  // __PYZY_BOPOMOFO_CONTEXT_H_
+3 −3
Original line number Diff line number Diff line
@@ -20,8 +20,8 @@
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#ifndef __BOPOMOFO_KEYBOARD_H_
#define __BOPOMOFO_KEYBOARD_H_
#ifndef __PYZY_BOPOMOFO_KEYBOARD_H_
#define __PYZY_BOPOMOFO_KEYBOARD_H_

#include "PyZyBopomofo.h"

@@ -201,4 +201,4 @@ bopomofo_keyboard[][41][2] = {
    },
};

#endif // __BOPOMOFO_KEYBOARD_H_
#endif // __PYZY_BOPOMOFO_KEYBOARD_H_
+3 −3
Original line number Diff line number Diff line
@@ -19,8 +19,8 @@
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#ifndef __CONFIG_H_
#define __CONFIG_H_
#ifndef __PYZY_CONFIG_H_
#define __PYZY_CONFIG_H_

#ifdef HAVE_CONFIG_H
#  include <config.h>
@@ -94,4 +94,4 @@ private:

};  // namespace PyZy

#endif  // __CONFIG_H_
#endif  // __PYZY_CONFIG_H_
+3 −3
Original line number Diff line number Diff line
@@ -19,8 +19,8 @@
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */
#ifndef __DATABASE_H_
#define __DATABASE_H_
#ifndef __PYZY_DATABASE_H_
#define __PYZY_DATABASE_H_

#include "PyZyUtil.h"
#include "PyZyString.h"
@@ -112,4 +112,4 @@ private:

};  // namespace PyZy

#endif  // __DATABASE_H_
#endif  // __PYZY_DATABASE_H_
Loading