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