blob: 21c80d9be02a9478d9d1e75ba40dee52f9388bd8 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/**
2 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NDN_INTEREST_TYPES_H
Jeff Thompsone589c3f2013-10-12 17:30:50 -07008#define NDN_INTEREST_TYPES_H
Jeff Thompson25b4e612013-10-10 16:03:24 -07009
Jeff Thompsone589c3f2013-10-12 17:30:50 -070010#ifdef __cplusplus
Jeff Thompson25b4e612013-10-10 16:03:24 -070011extern "C" {
12#endif
13
14typedef enum {
15 ndn_Exclude_COMPONENT = 0,
16 ndn_Exclude_ANY = 1
17} ndn_ExcludeType;
18
19
20
Jeff Thompsone589c3f2013-10-12 17:30:50 -070021#ifdef __cplusplus
Jeff Thompson25b4e612013-10-10 16:03:24 -070022}
23#endif
24
25#endif