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 | |
| 12 | If you agree with the terms of the New BSD License, please use the following license |
| 13 | boilerplate 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 | */ |