0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
SerializedCellsFlag.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2007-2015 Hypertable, Inc.
3  *
4  * This file is part of Hypertable.
5  *
6  * Hypertable is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 3
9  * of the License, or any later version.
10  *
11  * Hypertable is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Hypertable. If not, see <http://www.gnu.org/licenses/>
18  */
19 
20 #ifndef HYPERTABLE_SERIALIZEDCELLSFLAG_H
21 #define HYPERTABLE_SERIALIZEDCELLSFLAG_H
22 
23 namespace Hypertable {
24  namespace SerializedCellsFlag {
25  enum {
26  EOB = 0x01,
27  EOS = 0x02,
28  FLUSH = 0x04,
29  REV_IS_TS = 0x10,
33  };
34  }
35 
36  namespace SerializedCellsVersion {
37  enum {
38  SCVERSION = 0x01
39  };
40  }
41 }
42 
43 #endif // HYPERTABLE_SERIALIZEDCELLSFLAG_H
Hypertable definitions