mjplusplus  v0.4.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
globals.hpp
Go to the documentation of this file.
1 #ifndef GLOBALS_HPP
2 #define GLOBALS_HPP
3 
4 #include <memory>
5 #include <vector>
6 
7 template <class T> using shptr = std::shared_ptr<T>;
8 template <class T> using vec = std::vector<T>;
9 
10 typedef std::pair<unsigned int, unsigned int> source_position_t;
11 
12 #endif
std::pair< unsigned int, unsigned int > source_position_t
Definition: globals.hpp:10
std::shared_ptr< T > shptr
Definition: globals.hpp:7
std::vector< T > vec
Definition: globals.hpp:8