blob: 0c0e28824041c5a3e7e106876aa1054b82b03499 [file] [log] [blame]
Alexander Afanasyev5ba90362013-07-15 19:58:38 -07001## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2#
3# Copyright (c) 2011-2013, Regents of the University of California
4# Alexander Afanasyev
5#
6# GNU 3.0 license, See the LICENSE file for more information
7#
8# Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
9#
10
11#
12# Based on PyCCN code, copyrighted and licensed as follows
13#
14# Copyright (c) 2011-2013, Regents of the University of California
15# BSD license, See the COPYING file for more information
16# Written by: Derek Kulinski <takeda@takeda.tk>
17# Jeff Burke <jburke@ucla.edu>
18#
19
Alexander Afanasyev39f53162013-07-18 16:24:31 -070020__all__ = ['Face', 'Name', 'Interest', 'Data', 'Key', 'ContentObject']
Alexander Afanasyev5ba90362013-07-15 19:58:38 -070021
22VERSION = 0.3
Alexander Afanasyev39f53162013-07-18 16:24:31 -070023NDNSIM = True
Alexander Afanasyev5ba90362013-07-15 19:58:38 -070024
Alexander Afanasyev39f53162013-07-18 16:24:31 -070025import sys as _sys
Alexander Afanasyev5ba90362013-07-15 19:58:38 -070026
Alexander Afanasyev39f53162013-07-18 16:24:31 -070027try:
28 from Face import Face, EventLoop
29 from Name import Name
30 from Interest import Interest
31 from Data import Data, ContentObject, SignedInfo
32 from Key import Key
Alexander Afanasyev5ba90362013-07-15 19:58:38 -070033
Alexander Afanasyev39f53162013-07-18 16:24:31 -070034except ImportError:
35 del _sys.modules[__name__]
36 raise