Link.cpp
Go to the documentation of this file.
1 #include "Link.hpp"
2 
3 namespace iv
4 {
5 
7  _type( typeid( void ) ),
8  _target( nullptr )
9 {
10 }
11 
12 std::type_index VLink::type()
13 {
14  return this->_type;
15 }
16 
17 }