Navigation Menu

Skip to content

Commit

Permalink
Use .cpp and .hpp
Browse files Browse the repository at this point in the history
ha_mroonga.cc -> ha_mroonga.cpp
ha_mroonga.h  -> ha_mroonga.hpp
  • Loading branch information
kou committed Apr 9, 2012
1 parent f1886dd commit de6ee2d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Expand Up @@ -8,14 +8,14 @@ ACLOCAL_AMFLAGS = $$ACLOCAL_ARGS
noinst_HEADERS = \
mrn_macro.h \
mrn_sys.hpp \
ha_mroonga.h \
ha_mroonga.hpp \
mrn_table.h \
mrn_err.h \
mrn_mysql.h \
mrn_mysql_compat.h

sources = \
ha_mroonga.cc \
ha_mroonga.cpp \
mrn_sys.cpp \
mrn_table.cc

Expand Down
2 changes: 1 addition & 1 deletion ha_mroonga.cc → ha_mroonga.cpp
Expand Up @@ -42,7 +42,7 @@
#include <unistd.h>
#include "mrn_err.h"
#include "mrn_table.h"
#include "ha_mroonga.h"
#include "ha_mroonga.hpp"
#include <mrn_path_mapper.hpp>

#define MRN_MESSAGE_BUFFER_SIZE 1024
Expand Down
6 changes: 3 additions & 3 deletions ha_mroonga.h → ha_mroonga.hpp
Expand Up @@ -19,8 +19,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#ifndef _ha_mroonga_h
#define _ha_mroonga_h
#ifndef _ha_mroonga_hpp
#define _ha_mroonga_hpp

#ifdef USE_PRAGMA_INTERFACE
#pragma interface
Expand Down Expand Up @@ -925,4 +925,4 @@ class ha_mroonga: public handler
}
#endif

#endif /* _ha_mroonga_h */
#endif /* _ha_mroonga_hpp */

0 comments on commit de6ee2d

Please sign in to comment.