[Groonga-commit] groonga/groonga [master] renamed some c++ source files

Back to archive index

null+****@clear***** null+****@clear*****
2011年 6月 18日 (土) 14:03:22 JST


Daijiro MORI	2011-06-18 05:03:22 +0000 (Sat, 18 Jun 2011)

  New Revision: 9a666b601d21b7fe770f963724167dd67e0bb14e

  Log:
    renamed some c++ source files

  Renamed files:
    lib/dat/base.hpp
      (from lib/dat/base.h)
    lib/dat/block.hpp
      (from lib/dat/block.h)
    lib/dat/check.hpp
      (from lib/dat/check.h)
    lib/dat/dat.hpp
      (from lib/dat/common.h)
    lib/dat/header.hpp
      (from lib/dat/header.h)
    lib/dat/key-info.hpp
      (from lib/dat/key-info.h)
    lib/dat/key.hpp
      (from lib/dat/key.h)
    lib/dat/node.hpp
      (from lib/dat/node.h)
    lib/dat/timer.hpp
      (from lib/dat/timer.h)
    lib/dat/trie.cpp
      (from lib/dat/trie.cc)
    lib/dat/trie.hpp
      (from lib/dat/trie.h)
    lib/dat/usage.hpp
      (from lib/dat/usage.h)

  Renamed: lib/dat/base.hpp (+4 -4) 91%
===================================================================
--- lib/dat/base.h    2011-06-18 03:16:54 +0000 (7449524)
+++ lib/dat/base.hpp    2011-06-18 05:03:22 +0000 (930555e)
@@ -1,7 +1,7 @@
-#ifndef GRN_DAT_BASE_H
-#define GRN_DAT_BASE_H
+#ifndef GRN_DAT_BASE_HPP_
+#define GRN_DAT_BASE_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 namespace grn {
 namespace dat {
@@ -51,4 +51,4 @@ class Base {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_BASE_H
+#endif  // GRN_DAT_BASE_HPP_

  Renamed: lib/dat/block.hpp (+4 -4) 93%
===================================================================
--- lib/dat/block.h    2011-06-18 03:16:54 +0000 (97a9098)
+++ lib/dat/block.hpp    2011-06-18 05:03:22 +0000 (54039a1)
@@ -1,7 +1,7 @@
-#ifndef GRN_DAT_BLOCK_H
-#define GRN_DAT_BLOCK_H
+#ifndef GRN_DAT_BLOCK_HPP_
+#define GRN_DAT_BLOCK_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 namespace grn {
 namespace dat {
@@ -76,4 +76,4 @@ class Block {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_BLOCK_H
+#endif  // GRN_DAT_BLOCK_HPP_

  Renamed: lib/dat/check.hpp (+4 -4) 97%
===================================================================
--- lib/dat/check.h    2011-06-18 03:16:54 +0000 (113cb7c)
+++ lib/dat/check.hpp    2011-06-18 05:03:22 +0000 (24c36c6)
@@ -1,7 +1,7 @@
-#ifndef GRN_DAT_CHECK_H
-#define GRN_DAT_CHECK_H
+#ifndef GRN_DAT_CHECK_HPP_
+#define GRN_DAT_CHECK_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 namespace grn {
 namespace dat {
@@ -139,4 +139,4 @@ class Check {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_CHECK_H
+#endif  // GRN_DAT_CHECK_HPP_

  Renamed: lib/dat/dat.hpp (+3 -3) 97%
===================================================================
--- lib/dat/common.h    2011-06-18 03:16:54 +0000 (6b45e53)
+++ lib/dat/dat.hpp    2011-06-18 05:03:22 +0000 (a75986e)
@@ -1,5 +1,5 @@
-#ifndef GRN_DAT_COMMON_H
-#define GRN_DAT_COMMON_H
+#ifndef GRN_DAT_COMMON_HPP_
+#define GRN_DAT_COMMON_HPP_
 
 #ifndef _MSC_VER
  #include <stdint.h>
@@ -143,4 +143,4 @@ DA_DEFINE_ERROR(SizeError);
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_COMMON_H
+#endif  // GRN_DAT_COMMON_HPP_

  Renamed: lib/dat/header.hpp (+4 -4) 94%
===================================================================
--- lib/dat/header.h    2011-06-18 03:16:54 +0000 (27abdb6)
+++ lib/dat/header.hpp    2011-06-18 05:03:22 +0000 (d8fc80e)
@@ -1,7 +1,7 @@
-#ifndef GRN_DAT_HEADER_H
-#define GRN_DAT_HEADER_H
+#ifndef GRN_DAT_HPP_EADER_HPP_
+#define GRN_DAT_HPP_EADER_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 namespace grn {
 namespace dat {
@@ -104,4 +104,4 @@ class Header {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_HEADER_H
+#endif  // GRN_DAT_HPP_EADER_HPP_

  Renamed: lib/dat/key-info.hpp (+4 -4) 70%
===================================================================
--- lib/dat/key-info.h    2011-06-18 03:16:54 +0000 (3640501)
+++ lib/dat/key-info.hpp    2011-06-18 05:03:22 +0000 (75e9bdd)
@@ -1,7 +1,7 @@
-#ifndef GRN_DAT_KEY_INFO_H
-#define GRN_DAT_KEY_INFO_H
+#ifndef GRN_DAT_KEY_INFO_HPP_
+#define GRN_DAT_KEY_INFO_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 namespace grn {
 namespace dat {
@@ -26,4 +26,4 @@ class KeyInfo {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_KEY_INFO_H
+#endif  // GRN_DAT_KEY_INFO_HPP_

  Renamed: lib/dat/key.hpp (+4 -4) 84%
===================================================================
--- lib/dat/key.h    2011-06-18 03:16:54 +0000 (3e7d242)
+++ lib/dat/key.hpp    2011-06-18 05:03:22 +0000 (6ddd2f1)
@@ -1,7 +1,7 @@
-#ifndef GRN_DAT_KEY_H
-#define GRN_DAT_KEY_H
+#ifndef GRN_DAT_KEY_HPP_
+#define GRN_DAT_KEY_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 namespace grn {
 namespace dat {
@@ -42,4 +42,4 @@ class Key {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_KEY_H
+#endif  // GRN_DAT_KEY_HPP_

  Renamed: lib/dat/node.hpp (+5 -5) 94%
===================================================================
--- lib/dat/node.h    2011-06-18 03:16:54 +0000 (0c9d1d6)
+++ lib/dat/node.hpp    2011-06-18 05:03:22 +0000 (1fc0718)
@@ -1,8 +1,8 @@
-#ifndef GRN_DAT_NODE_H
-#define GRN_DAT_NODE_H
+#ifndef GRN_DAT_NODE_HPP_
+#define GRN_DAT_NODE_HPP_
 
-#include "./base.h"
-#include "./check.h"
+#include "./base.hpp"
+#include "./check.hpp"
 
 namespace grn {
 namespace dat {
@@ -108,4 +108,4 @@ class Node {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_NODE_H
+#endif  // GRN_DAT_NODE_HPP_

  Renamed: lib/dat/timer.hpp (+4 -4) 84%
===================================================================
--- lib/dat/timer.h    2011-06-18 03:16:54 +0000 (c852070)
+++ lib/dat/timer.hpp    2011-06-18 05:03:22 +0000 (e83bd2a)
@@ -1,7 +1,7 @@
-#ifndef DA_TIMER_H_
-#define DA_TIMER_H_
+#ifndef DA_TIMER_HPP_
+#define DA_TIMER_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 #include <sys/time.h>
 
@@ -36,4 +36,4 @@ class Timer {
 
 }  // namespace da
 
-#endif  // DA_TIMER_H_
+#endif  // DA_TIMER_HPP_

  Renamed: lib/dat/trie.cpp (+1 -1) 99%
===================================================================
--- lib/dat/trie.cc    2011-06-18 03:16:54 +0000 (f5dc7d7)
+++ lib/dat/trie.cpp    2011-06-18 05:03:22 +0000 (ef9f48f)
@@ -1,4 +1,4 @@
-#include "./trie.h"
+#include "./trie.hpp"
 
 #include <fcntl.h>
 #include <sys/mman.h>

  Renamed: lib/dat/trie.hpp (+8 -8) 96%
===================================================================
--- lib/dat/trie.h    2011-06-18 03:16:54 +0000 (f507de4)
+++ lib/dat/trie.hpp    2011-06-18 05:03:22 +0000 (ffad6f4)
@@ -1,11 +1,11 @@
-#ifndef GRN_DAT_TRIE_H
-#define GRN_DAT_TRIE_H
+#ifndef GRN_DAT_TRIE_HPP_
+#define GRN_DAT_TRIE_HPP_
 
-#include "./header.h"
-#include "./node.h"
-#include "./block.h"
-#include "./key-info.h"
-#include "./key.h"
+#include "./header.hpp"
+#include "./node.hpp"
+#include "./block.hpp"
+#include "./key-info.hpp"
+#include "./key.hpp"
 
 namespace grn {
 namespace dat {
@@ -220,4 +220,4 @@ class Trie {
 }  // namespace dat
 }  // namespace grn
 
-#endif  // GRN_DAT_TRIE_H
+#endif  // GRN_DAT_TRIE_HPP_

  Renamed: lib/dat/usage.hpp (+4 -4) 89%
===================================================================
--- lib/dat/usage.h    2011-06-18 03:16:54 +0000 (844ffac)
+++ lib/dat/usage.hpp    2011-06-18 05:03:22 +0000 (2b58e93)
@@ -1,7 +1,7 @@
-#ifndef DA_USAGE_H_
-#define DA_USAGE_H_
+#ifndef DA_USAGE_HPP_
+#define DA_USAGE_HPP_
 
-#include "./common.h"
+#include "./dat.hpp"
 
 #include <sys/time.h>
 #include <sys/resource.h>
@@ -43,4 +43,4 @@ class Usage {
 
 }  // namespace da
 
-#endif  // DA_USAGE_H_
+#endif  // DA_USAGE_HPP_




Groonga-commit メーリングリストの案内
Back to archive index