docs: Updating documentation and license boilerplates in all files
Change-Id: I321fb0d85aaddf9150ed496fe03ee0e4dc738761
diff --git a/src/util/scheduler.hpp b/src/util/scheduler.hpp
index cc8bcce..89892e1 100644
--- a/src/util/scheduler.hpp
+++ b/src/util/scheduler.hpp
@@ -1,7 +1,13 @@
-/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
- * Copyright (C) 2014 Named Data Networking Project
- * See COPYING for copyright and distribution information.
+ * Copyright (c) 2013-2014, Regents of the University of California.
+ * All rights reserved.
+ *
+ * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
+ * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
+ *
+ * This file licensed under New BSD License. See COPYING for detailed information about
+ * ndn-cxx library copyright, permissions, and redistribution restrictions.
*/
#ifndef NDN_UTIL_SCHEDULER_HPP
@@ -44,7 +50,7 @@
schedulePeriodicEvent(const time::nanoseconds& after,
const time::nanoseconds& period,
const Event& event);
-
+
/**
* \brief Cancel scheduled event
*/
@@ -54,7 +60,7 @@
private:
void
onEvent(const boost::system::error_code& code);
-
+
private:
struct EventInfo
{
@@ -78,7 +84,7 @@
time::nanoseconds
expiresFromNow() const;
-
+
time::steady_clock::TimePoint m_scheduledTime;
time::nanoseconds m_period;
Event m_event;