From 298f6fe38a60bce9d847450bf1d1c2d85081d72f Mon Sep 17 00:00:00 2001 From: Mu-Woong Lee Date: Wed, 20 Apr 2016 20:21:01 +0900 Subject: [PATCH] Update License text & boilerplates Change-Id: I54d0f60dbdd56d31d873d4a63b49c84a7a03a4c4 Signed-off-by: Mu-Woong Lee --- LICENSE | 4 ++-- src/app-stats/AppStatsLogger.cpp | 2 +- src/app-stats/AppStatsLogger.h | 2 +- src/app-stats/AppStatsProvider.cpp | 2 +- src/app-stats/AppStatsProvider.h | 2 +- src/media-stats/MediaStatsLogger.cpp | 2 +- src/media-stats/MediaStatsLogger.h | 2 +- src/media-stats/MediaStatsProvider.cpp | 2 +- src/media-stats/MediaStatsProvider.h | 2 +- src/my-place/place_recognition.cpp | 2 +- src/my-place/place_recognition.h | 2 +- src/my-place/place_recognition_types.h | 2 +- src/my-place/user_places/debug_utils.cpp | 2 +- src/my-place/user_places/debug_utils.h | 2 +- src/my-place/user_places/gmap.cpp | 2 +- src/my-place/user_places/gmap.h | 2 +- src/my-place/user_places/graph.cpp | 2 +- src/my-place/user_places/graph.h | 2 +- src/my-place/user_places/location_listener_iface.h | 2 +- src/my-place/user_places/location_logger.cpp | 2 +- src/my-place/user_places/location_logger.h | 2 +- src/my-place/user_places/mahal.cpp | 2 +- src/my-place/user_places/mahal.h | 2 +- src/my-place/user_places/median.cpp | 2 +- src/my-place/user_places/median.h | 2 +- src/my-place/user_places/piecewise_lin.cpp | 2 +- src/my-place/user_places/piecewise_lin.h | 2 +- src/my-place/user_places/place_categer.cpp | 2 +- src/my-place/user_places/place_categer.h | 2 +- src/my-place/user_places/places_detector.cpp | 2 +- src/my-place/user_places/places_detector.h | 2 +- src/my-place/user_places/prob_features_model.h | 2 +- src/my-place/user_places/similarity.h | 2 +- src/my-place/user_places/user_places.cpp | 2 +- src/my-place/user_places/user_places.h | 2 +- src/my-place/user_places/user_places_params.h | 2 +- src/my-place/user_places/user_places_types.cpp | 2 +- src/my-place/user_places/user_places_types.h | 2 +- src/my-place/user_places/visit_categer.cpp | 2 +- src/my-place/user_places/visit_categer.h | 2 +- src/my-place/user_places/visit_detector.cpp | 2 +- src/my-place/user_places/visit_detector.h | 2 +- src/my-place/user_places/visit_listener_iface.h | 2 +- src/my-place/user_places/wifi_listener_iface.h | 2 +- src/my-place/user_places/wifi_logger.cpp | 2 +- src/my-place/user_places/wifi_logger.h | 2 +- src/shared/StatisticsContextProvider.cpp | 3 ++- src/social-stats/SocialStatsLogger.cpp | 2 +- src/social-stats/SocialStatsLogger.h | 2 +- src/social-stats/SocialStatsProvider.cpp | 2 +- src/social-stats/SocialStatsProvider.h | 2 +- 51 files changed, 53 insertions(+), 52 deletions(-) diff --git a/LICENSE b/LICENSE index 1b01074..d6bdc8d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015 Samsung Electronics Co., Ltd. All rights reserved. +Copyright (c) 2015 - 2016 Samsung Electronics Co., Ltd. All rights reserved. Apache License Version 2.0, January 2004 @@ -188,7 +188,7 @@ Copyright (c) 2015 Samsung Electronics Co., Ltd. All rights reserved. same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/app-stats/AppStatsLogger.cpp b/src/app-stats/AppStatsLogger.cpp index 9bbb390..78261b5 100644 --- a/src/app-stats/AppStatsLogger.cpp +++ b/src/app-stats/AppStatsLogger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/app-stats/AppStatsLogger.h b/src/app-stats/AppStatsLogger.h index b2104dd..4a8dd02 100644 --- a/src/app-stats/AppStatsLogger.h +++ b/src/app-stats/AppStatsLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/app-stats/AppStatsProvider.cpp b/src/app-stats/AppStatsProvider.cpp index 7e18049..ebafae9 100644 --- a/src/app-stats/AppStatsProvider.cpp +++ b/src/app-stats/AppStatsProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/app-stats/AppStatsProvider.h b/src/app-stats/AppStatsProvider.h index dccb66a..7186955 100644 --- a/src/app-stats/AppStatsProvider.h +++ b/src/app-stats/AppStatsProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/media-stats/MediaStatsLogger.cpp b/src/media-stats/MediaStatsLogger.cpp index 9b1db7d..44021d8 100644 --- a/src/media-stats/MediaStatsLogger.cpp +++ b/src/media-stats/MediaStatsLogger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/media-stats/MediaStatsLogger.h b/src/media-stats/MediaStatsLogger.h index 28e8aca..32affe5 100644 --- a/src/media-stats/MediaStatsLogger.h +++ b/src/media-stats/MediaStatsLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/media-stats/MediaStatsProvider.cpp b/src/media-stats/MediaStatsProvider.cpp index b8ce482..263a54d 100644 --- a/src/media-stats/MediaStatsProvider.cpp +++ b/src/media-stats/MediaStatsProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/media-stats/MediaStatsProvider.h b/src/media-stats/MediaStatsProvider.h index 5895c46..4d2c702 100644 --- a/src/media-stats/MediaStatsProvider.h +++ b/src/media-stats/MediaStatsProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/place_recognition.cpp b/src/my-place/place_recognition.cpp index b736f1a..789c2da 100644 --- a/src/my-place/place_recognition.cpp +++ b/src/my-place/place_recognition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/place_recognition.h b/src/my-place/place_recognition.h index 814bb00..773dd34 100644 --- a/src/my-place/place_recognition.h +++ b/src/my-place/place_recognition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/place_recognition_types.h b/src/my-place/place_recognition_types.h index 9576331..5a645e4 100644 --- a/src/my-place/place_recognition_types.h +++ b/src/my-place/place_recognition_types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/debug_utils.cpp b/src/my-place/user_places/debug_utils.cpp index b5fccf2..d609f76 100644 --- a/src/my-place/user_places/debug_utils.cpp +++ b/src/my-place/user_places/debug_utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/debug_utils.h b/src/my-place/user_places/debug_utils.h index dde40bc..4651dfc 100644 --- a/src/my-place/user_places/debug_utils.h +++ b/src/my-place/user_places/debug_utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/gmap.cpp b/src/my-place/user_places/gmap.cpp index 845b3cf..767ae8b 100644 --- a/src/my-place/user_places/gmap.cpp +++ b/src/my-place/user_places/gmap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/gmap.h b/src/my-place/user_places/gmap.h index 29eacd2..34e9782 100644 --- a/src/my-place/user_places/gmap.h +++ b/src/my-place/user_places/gmap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/graph.cpp b/src/my-place/user_places/graph.cpp index 53daeb3..2fdb6dc 100644 --- a/src/my-place/user_places/graph.cpp +++ b/src/my-place/user_places/graph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/graph.h b/src/my-place/user_places/graph.h index 9fedb26..542b0cd 100644 --- a/src/my-place/user_places/graph.h +++ b/src/my-place/user_places/graph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/location_listener_iface.h b/src/my-place/user_places/location_listener_iface.h index 914e022..4c3aca3 100644 --- a/src/my-place/user_places/location_listener_iface.h +++ b/src/my-place/user_places/location_listener_iface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/location_logger.cpp b/src/my-place/user_places/location_logger.cpp index 0994734..1331740 100644 --- a/src/my-place/user_places/location_logger.cpp +++ b/src/my-place/user_places/location_logger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/location_logger.h b/src/my-place/user_places/location_logger.h index ae4c9bd..c5cb74a 100644 --- a/src/my-place/user_places/location_logger.h +++ b/src/my-place/user_places/location_logger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/mahal.cpp b/src/my-place/user_places/mahal.cpp index ccc7f9f..b78d34c 100644 --- a/src/my-place/user_places/mahal.cpp +++ b/src/my-place/user_places/mahal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/mahal.h b/src/my-place/user_places/mahal.h index 9e733c7..9fc57ff 100644 --- a/src/my-place/user_places/mahal.h +++ b/src/my-place/user_places/mahal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/median.cpp b/src/my-place/user_places/median.cpp index f0463b3..37c0793 100644 --- a/src/my-place/user_places/median.cpp +++ b/src/my-place/user_places/median.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/median.h b/src/my-place/user_places/median.h index 70461ae..84eaa34 100644 --- a/src/my-place/user_places/median.h +++ b/src/my-place/user_places/median.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/piecewise_lin.cpp b/src/my-place/user_places/piecewise_lin.cpp index 638af66..eee1e4d 100644 --- a/src/my-place/user_places/piecewise_lin.cpp +++ b/src/my-place/user_places/piecewise_lin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/piecewise_lin.h b/src/my-place/user_places/piecewise_lin.h index 0ef4bff..6195da6 100644 --- a/src/my-place/user_places/piecewise_lin.h +++ b/src/my-place/user_places/piecewise_lin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/place_categer.cpp b/src/my-place/user_places/place_categer.cpp index 1b4c975..09fc2e5 100644 --- a/src/my-place/user_places/place_categer.cpp +++ b/src/my-place/user_places/place_categer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/place_categer.h b/src/my-place/user_places/place_categer.h index 0d127b1..de2c657 100644 --- a/src/my-place/user_places/place_categer.h +++ b/src/my-place/user_places/place_categer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/places_detector.cpp b/src/my-place/user_places/places_detector.cpp index a48e395..0077769 100644 --- a/src/my-place/user_places/places_detector.cpp +++ b/src/my-place/user_places/places_detector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/places_detector.h b/src/my-place/user_places/places_detector.h index 6444539..734c89d 100644 --- a/src/my-place/user_places/places_detector.h +++ b/src/my-place/user_places/places_detector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/prob_features_model.h b/src/my-place/user_places/prob_features_model.h index d30f548..141125c 100644 --- a/src/my-place/user_places/prob_features_model.h +++ b/src/my-place/user_places/prob_features_model.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/similarity.h b/src/my-place/user_places/similarity.h index 5938ef5..c38a23e 100644 --- a/src/my-place/user_places/similarity.h +++ b/src/my-place/user_places/similarity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/user_places.cpp b/src/my-place/user_places/user_places.cpp index ca237ea..bdd1bc6 100644 --- a/src/my-place/user_places/user_places.cpp +++ b/src/my-place/user_places/user_places.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/user_places.h b/src/my-place/user_places/user_places.h index 1df6388..6eaa1d7 100644 --- a/src/my-place/user_places/user_places.h +++ b/src/my-place/user_places/user_places.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/user_places_params.h b/src/my-place/user_places/user_places_params.h index ec70a29..262e7ed 100644 --- a/src/my-place/user_places/user_places_params.h +++ b/src/my-place/user_places/user_places_params.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/user_places_types.cpp b/src/my-place/user_places/user_places_types.cpp index 14b1355..f3faa37 100644 --- a/src/my-place/user_places/user_places_types.cpp +++ b/src/my-place/user_places/user_places_types.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/user_places_types.h b/src/my-place/user_places/user_places_types.h index cdf7be4..a809d30 100644 --- a/src/my-place/user_places/user_places_types.h +++ b/src/my-place/user_places/user_places_types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/visit_categer.cpp b/src/my-place/user_places/visit_categer.cpp index 1d4c0c6..96000f6 100644 --- a/src/my-place/user_places/visit_categer.cpp +++ b/src/my-place/user_places/visit_categer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/visit_categer.h b/src/my-place/user_places/visit_categer.h index b9d4940..9f5a7fa 100644 --- a/src/my-place/user_places/visit_categer.h +++ b/src/my-place/user_places/visit_categer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/visit_detector.cpp b/src/my-place/user_places/visit_detector.cpp index e0ba642..5b6852c 100644 --- a/src/my-place/user_places/visit_detector.cpp +++ b/src/my-place/user_places/visit_detector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/visit_detector.h b/src/my-place/user_places/visit_detector.h index ee6e7c2..0078553 100644 --- a/src/my-place/user_places/visit_detector.h +++ b/src/my-place/user_places/visit_detector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/visit_listener_iface.h b/src/my-place/user_places/visit_listener_iface.h index fefc926..03f5f20 100644 --- a/src/my-place/user_places/visit_listener_iface.h +++ b/src/my-place/user_places/visit_listener_iface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/wifi_listener_iface.h b/src/my-place/user_places/wifi_listener_iface.h index 3b883d3..281575f 100644 --- a/src/my-place/user_places/wifi_listener_iface.h +++ b/src/my-place/user_places/wifi_listener_iface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/wifi_logger.cpp b/src/my-place/user_places/wifi_logger.cpp index 3367276..a8dfbb5 100644 --- a/src/my-place/user_places/wifi_logger.cpp +++ b/src/my-place/user_places/wifi_logger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/my-place/user_places/wifi_logger.h b/src/my-place/user_places/wifi_logger.h index 9938a2c..b9f9bed 100644 --- a/src/my-place/user_places/wifi_logger.h +++ b/src/my-place/user_places/wifi_logger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/shared/StatisticsContextProvider.cpp b/src/shared/StatisticsContextProvider.cpp index cfaf008..d547b60 100644 --- a/src/shared/StatisticsContextProvider.cpp +++ b/src/shared/StatisticsContextProvider.cpp @@ -1,5 +1,6 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. * + * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/social-stats/SocialStatsLogger.cpp b/src/social-stats/SocialStatsLogger.cpp index a32fa80..753588e 100644 --- a/src/social-stats/SocialStatsLogger.cpp +++ b/src/social-stats/SocialStatsLogger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/social-stats/SocialStatsLogger.h b/src/social-stats/SocialStatsLogger.h index 17850e9..f79cceb 100644 --- a/src/social-stats/SocialStatsLogger.h +++ b/src/social-stats/SocialStatsLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/social-stats/SocialStatsProvider.cpp b/src/social-stats/SocialStatsProvider.cpp index 0c0dd6d..ff850a2 100644 --- a/src/social-stats/SocialStatsProvider.cpp +++ b/src/social-stats/SocialStatsProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/social-stats/SocialStatsProvider.h b/src/social-stats/SocialStatsProvider.h index 0ee94fd..1ae1570 100644 --- a/src/social-stats/SocialStatsProvider.h +++ b/src/social-stats/SocialStatsProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2015 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. -- 2.34.1