Mark Slee | e9ce01c | 2007-05-16 02:29:53 +0000 | [diff] [blame^] | 1 | // Copyright (c) 2006- Facebook |
| 2 | // Distributed under the Thrift Software License |
| 3 | // |
| 4 | // See accompanying file LICENSE or visit the Thrift site at: |
| 5 | // http://developers.facebook.com/thrift/ |
| 6 | |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 7 | #ifndef T_MAP_H |
| 8 | #define T_MAP_H |
| 9 | |
Mark Slee | 4f8da1d | 2006-10-12 02:47:27 +0000 | [diff] [blame] | 10 | #include "t_container.h" |
| 11 | |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 12 | /** |
| 13 | * A map is a lightweight container type that just wraps another two data |
| 14 | * types. |
| 15 | * |
| 16 | * @author Mark Slee <mcslee@facebook.com> |
| 17 | */ |
Mark Slee | 4f8da1d | 2006-10-12 02:47:27 +0000 | [diff] [blame] | 18 | class t_map : public t_container { |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 19 | public: |
| 20 | t_map(t_type* key_type, t_type* val_type) : |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 21 | key_type_(key_type), |
| 22 | val_type_(val_type) {} |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 23 | |
Mark Slee | f5377b3 | 2006-10-10 01:42:59 +0000 | [diff] [blame] | 24 | t_type* get_key_type() const { |
| 25 | return key_type_; |
| 26 | } |
| 27 | |
| 28 | t_type* get_val_type() const { |
| 29 | return val_type_; |
| 30 | } |
| 31 | |
| 32 | bool is_map() const { |
| 33 | return true; |
| 34 | } |
Mark Slee | e854063 | 2006-05-30 09:24:40 +0000 | [diff] [blame] | 35 | |
| 36 | private: |
| 37 | t_type* key_type_; |
| 38 | t_type* val_type_; |
| 39 | }; |
| 40 | |
| 41 | #endif |