OSDN Git Service

[core] : 実装方法迷い中…
authorcaprice <caprice@users.sourceforge.jp>
Tue, 25 Jun 2013 14:01:57 +0000 (23:01 +0900)
committercaprice <caprice@users.sourceforge.jp>
Tue, 25 Jun 2013 14:01:57 +0000 (23:01 +0900)
core/include/query.hpp

index 441e12f..e8c1c80 100644 (file)
@@ -8,7 +8,7 @@
 #include "GikoMona.hpp"
 
 namespace monazilla { namespace GikoMona { namespace core {
-
+   
 /**
  * @note このクラスは boost::lockfree::queue<> の制約から
  *       trivially copyable の要件を満たす必要がある。
@@ -21,7 +21,7 @@ public:
     // query order
     class select_ final {
         friend class query;
-        select_(const query& q) {}
+        select_() {}
         ~select_() {}
     public:
         struct select_all_column {} all_columnes;
@@ -48,6 +48,9 @@ public:
         return select_(*this);
     }
     query& insert(const mona_string& into) {}
+
+private:
+
 };
 
 template <typename T>