Skip to content
Snippets Groups Projects
Commit 04c56bcc authored by Nathan Chambron's avatar Nathan Chambron
Browse files

refactor: add licensing to file header

parent d45c2a14
No related branches found
No related tags found
No related merge requests found
#
# ARF - Augmented Reality Framework (ETSI ISG ARF)
#
# Copyright 2022 ETSI
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Last change: June 2022
#
cmake_minimum_required (VERSION 3.2) cmake_minimum_required (VERSION 3.2)
project(PistacheGen) project(PistacheGen)
......
#
# ARF - Augmented Reality Framework (ETSI ISG ARF)
#
# Copyright 2022 ETSI
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Last change: June 2022
#
cmake_minimum_required(VERSION 3.2) cmake_minimum_required(VERSION 3.2)
project(HackPistacheServ VERSION 0.1.0) project(HackPistacheServ VERSION 0.1.0)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -pg -g3" ) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -pg -g3" )
......
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#include "DefaultApiEtsi.h" #include "DefaultApiEtsi.h"
......
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#ifndef DefaultApiEtsi_H_ #ifndef DefaultApiEtsi_H_
#define DefaultApiEtsi_H_ #define DefaultApiEtsi_H_
......
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#include "TrackableApiEtsi.h" #include "TrackableApiEtsi.h"
#include <boost/uuid/uuid.hpp> #include <boost/uuid/uuid.hpp>
#include <boost/lexical_cast.hpp> #include <boost/lexical_cast.hpp>
...@@ -46,4 +66,4 @@ void TrackableApiEtsi::get_trackables(Pistache::Http::ResponseWriter &response) ...@@ -46,4 +66,4 @@ void TrackableApiEtsi::get_trackables(Pistache::Http::ResponseWriter &response)
response.send(Pistache::Http::Code::Ok, jsonObjects.dump()); response.send(Pistache::Http::Code::Ok, jsonObjects.dump());
} }
} }
\ No newline at end of file
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#ifndef TrackableApiEtsi_H_ #ifndef TrackableApiEtsi_H_
#define TrackableApiEtsi_H_ #define TrackableApiEtsi_H_
......
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#include "WorldStorageManager.h" #include "WorldStorageManager.h"
#include <thread> #include <thread>
#include <iostream> #include <iostream>
...@@ -47,4 +67,4 @@ org::openapitools::server::model::Trackable WorldStorageManager::getTrackableByI ...@@ -47,4 +67,4 @@ org::openapitools::server::model::Trackable WorldStorageManager::getTrackableByI
*/ */
WorldStorageManager* WorldStorageManager::pinstance_{nullptr}; WorldStorageManager* WorldStorageManager::pinstance_{nullptr};
std::mutex WorldStorageManager::mutex_; std::mutex WorldStorageManager::mutex_;
\ No newline at end of file
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#ifndef WORLDSTORAGEMANAGER_H_ #ifndef WORLDSTORAGEMANAGER_H_
#define WORLDSTORAGEMANAGER_H_ #define WORLDSTORAGEMANAGER_H_
...@@ -55,4 +75,4 @@ public: ...@@ -55,4 +75,4 @@ public:
org::openapitools::server::model::Trackable getTrackableById(boost::uuids::uuid trackableId); org::openapitools::server::model::Trackable getTrackableById(boost::uuids::uuid trackableId);
}; };
#endif #endif
\ No newline at end of file
//
// ARF - Augmented Reality Framework (ETSI ISG ARF)
//
// Copyright 2022 ETSI
//
// 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Last change: June 2022
//
#include "pistache/endpoint.h" #include "pistache/endpoint.h"
#include "pistache/http.h" #include "pistache/http.h"
#include "pistache/router.h" #include "pistache/router.h"
......
arf005 @ 533b9d31
Subproject commit 5da5faa719bcb310bc57ae97168e582218d1355c Subproject commit 533b9d3198b772c7b628b0ab0e0a144b89966b46
{ {
"//": [
"ARF - Augmented Reality Framework (ETSI ISG ARF)",
"Copyright 2022 ETSI",
"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",
"http://www.apache.org/licenses/LICENSE-2.0",
"Unless required by applicable law or agreed to in writing, software",
"distributed under the License is distributed on an \"AS IS\" BASIS,",
"WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
"See the License for the specific language governing permissions and",
"limitations under the License.",
"Last change: June 2022"
],
"name": "worldstorageserver", "name": "worldstorageserver",
"version": "0.0.1", "version": "0.0.1",
"description": "ISG ARF World Storage Cpp Server", "description": "ISG ARF World Storage Cpp Server",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment