1 
2 /* Web Polygraph       http://www.web-polygraph.org/
3  * Copyright 2003-2011 The Measurement Factory
4  * Licensed under the Apache License, Version 2.0 */
5 
6 #ifndef POLYGRAPH__BASE_POLYLOGCATS_H
7 #define POLYGRAPH__BASE_POLYLOGCATS_H
8 
9 // append-only table with well-known entry categories
10 typedef enum {
11 	lgcAll = 0, // applicable to all categories
12 	lgcCltSide,
13 	lgcSrvSide,
14 
15 	lgcEnd
16 } LogEntryCat;
17 
18 
19 #endif
20