blob: 53fa54afc73295318a0e3c99327db8e716c1d742 [file] [log] [blame] [view]
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07001Notes for ndn-cxx developers
2============================
3
4Code style
5----------
6
7ndn-cxx code is subject to [ndn-cxx code style](http://named-data.net/doc/ndn-cxx/current/code-style.html).
8
9Licensing
10---------
11
12If you agree with the terms of the New BSD License, please use the following license
13boilerplate into all `.hpp` and `.cpp` files:
14
15
16 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
17 /**
18 * Copyright (c) Year(s), Copyright Holder.
19 * All rights reserved.
20 *
21 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
22 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
23 *
24 * This file licensed under New BSD License. See COPYING for detailed information about
25 * ndn-cxx library copyright, permissions, and redistribution restrictions.
26 ////// [optional part] //////
27 *
28 * @author Author's Name <email@domain-or-homepage://url>
29 * @author Other Author's Name <another.email@domain-or-homepage://url>
30 ////// [end of optional part] //////
31 */