Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 1 | Notes for ndn-cxx developers |
| 2 | ============================ |
| 3 | |
| 4 | Code style |
| 5 | ---------- |
| 6 | |
| 7 | ndn-cxx code is subject to [ndn-cxx code style](http://named-data.net/doc/ndn-cxx/current/code-style.html). |
| 8 | |
| 9 | Licensing |
| 10 | --------- |
| 11 | |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 12 | Contributions to the library must be licensed under LGPL 3.0 or compatible license. If |
| 13 | you are choosing LGPL 3.0, please use the following license boilerplate in all `.hpp` and |
| 14 | `.cpp` files: |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 15 | |
| 16 | |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 17 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 18 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 19 | * Copyright (c) [Year(s)] [Copyright Holder]. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 20 | * |
| 21 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 22 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 23 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 24 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 25 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 26 | * |
| 27 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 28 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 29 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 30 | * |
| 31 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 32 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 33 | * <http://www.gnu.org/licenses/>. |
| 34 | * |
| 35 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 36 | ////// [optional part] ////// |
| 37 | * |
| 38 | * @author Author's Name <email@domain-or-homepage://url> |
| 39 | * @author Other Author's Name <another.email@domain-or-homepage://url> |
| 40 | ////// [end of optional part] ////// |
| 41 | */ |
Alexander Afanasyev | af99f46 | 2015-01-19 21:43:09 -0800 | [diff] [blame] | 42 | |
| 43 | If you are affiliated to an NSF-supported NDN project institution, please use the [NDN Team License |
| 44 | Boilerplate](http://redmine.named-data.net/projects/ndn-cxx/wiki/NDN_Team_License_Boilerplate_(ndn-cxx)). |