blob: 2fbcb8f507ad2ff3e385e22f4975351b54825f46 [file] [log] [blame]
Mark Slee83c52a82006-06-07 06:51:18 +00001package com.facebook.thrift.protocol;
2
3import com.facebook.thrift.types.*;
4
5/**
6 * Helper class that encapsulates struct metadata.
7 *
8 * @author Mark Slee <mcslee@facebook.com>
9 */
10public class TStruct {
11 public TStruct() {}
12
13 public TStruct(String n) {
14 name = n;
15 }
16
17 public String name = "";
18}