blob: 78e3ccfdddf3c308d3cf67cd5e6f7e8c0be49549 [file] [log] [blame]
Chengyu Faneb0422c2015-03-04 16:34:14 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2015, Colorado State University.
4 *
5 * This file is part of ndn-atmos.
6 *
7 * ndn-atmos is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-atmos is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-atmos, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-atmos authors and contributors.
20 */
21
22#include <ChronoSync/socket.hpp>
23#include <ndn-cxx/face.hpp>
24
25using namespace std;
26using namespace ndn;
27
28int main()
29{
30 Face face;
31 shared_ptr<chronosync::Socket> socket;
32 return 0;
33}