MeVisLab Toolbox Reference
SharedPtrTuple.h
Go to the documentation of this file.
1 // Copyright (c) Fraunhofer MEVIS, Germany. All rights reserved.
2 // **InsertLicense** code
3 //----------------------------------------------------------------------------------
4 
5 #pragma once
6 
7 #include <tuple>
8 #include <memory>
9 
10 
11 namespace asio {
12 
13  template<typename... Types>
14  using SharedPtrTuple = std::tuple<std::shared_ptr<Types>...>;
15 
16 }
std::tuple< std::shared_ptr< Types >... > SharedPtrTuple