Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-17 08:35:02

0001 /*
0002  * Licensed to the Apache Software Foundation (ASF) under one
0003  * or more contributor license agreements. See the NOTICE file
0004  * distributed with this work for additional information
0005  * regarding copyright ownership. The ASF licenses this file
0006  * to you under the Apache License, Version 2.0 (the
0007  * "License"); you may not use this file except in compliance
0008  * with the License. You may obtain a copy of the License at
0009  *
0010  *   http://www.apache.org/licenses/LICENSE-2.0
0011  *
0012  * Unless required by applicable law or agreed to in writing,
0013  * software distributed under the License is distributed on an
0014  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
0015  * KIND, either express or implied. See the License for the
0016  * specific language governing permissions and limitations
0017  * under the License.
0018  */
0019 
0020 #ifndef _THRIFT_TLIST_H_
0021 #define _THRIFT_TLIST_H_
0022 
0023 #include <thrift/protocol/TEnum.h>
0024 
0025 namespace apache {
0026 namespace thrift {
0027 namespace protocol {
0028 
0029 /**
0030  * Helper class that encapsulates list metadata.
0031  *
0032  */
0033 class TList {
0034 public:
0035   TList() : elemType_(T_STOP), 
0036   size_(0) {
0037 
0038   }
0039 
0040   TList(TType t = T_STOP, int s = 0)
0041     : elemType_(t),
0042       size_(s) { 
0043         
0044   }
0045 
0046   TType elemType_;
0047   int  size_;
0048 };
0049 }
0050 }
0051 } // apache::thrift::protocol
0052 
0053 #endif // #ifndef _THRIFT_TLIST_H_