OSDN Git Service

unixtime.hpp
[roast/roast.git] / roast / include / roast / lexical / _delete / variable / any_vector.hpp
1 //      Roast+ License
2 /*
3 */
4 #ifndef __SFJP_ROAST__lexical__variable__any_vector_HPP__
5 #define __SFJP_ROAST__lexical__variable__any_vector_HPP__
6
7 #include "roast/any.hpp"
8 #include <vector>
9
10 namespace roast
11 {
12         namespace lexical
13         {
14                 namespace variable
15                 {
16                         ///////////////////////////////////////////////////
17                         
18                         class any_vector
19                         {
20                         protected:
21                                 //using ::roast::any;
22                                 typedef ::roast::any any;
23                                 ::std::vector<any> m_list;
24                         public:
25                                 template <typename _Any>
26                                 void push_back(const _Any& an){
27
28                                 }
29                         };
30                         
31                         typedef any_vector avector;
32                         
33                         ///////////////////////////////////////////////////
34                 }
35         }
36 }
37
38 #endif//__SFJP_ROAST__lexical__variable__any_vector_HPP__