blob: d6a5e51ee67f82e71d5505b2b66d981582d7a688 [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
8#define NDN_INTEREST_TYPES_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14typedef enum {
15 ndn_Exclude_COMPONENT = 0,
16 ndn_Exclude_ANY = 1
17} ndn_ExcludeType;
18
19
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif