OperatorOverload.hpp
Go to the documentation of this file.
00001 /*
00002  * OperatorOverload.hpp
00003  *
00004  *  Created on: Jul 13, 2012
00005  *      Author: mriedel
00006  */
00007 
00008 #ifndef OPERATOROVERLOAD_HPP_
00009 #define OPERATOROVERLOAD_HPP_
00010 
00011 #include <telekyb_defines/telekyb_defines.hpp>
00012 
00013 // Eigen
00014 #include <Eigen/Dense>
00015 
00016 // Implementation of StringCoversion Classes
00017 namespace TELEKYB_NAMESPACE
00018 {
00019 
00020 
00021 
00022 // temp
00023 template<typename _Scalar, int _Options>
00024 bool operator==(const Eigen::Quaternion<_Scalar,_Options>& lhs, const Eigen::Quaternion<_Scalar,_Options>& rhs)
00025 {
00026         return (lhs.vec() == rhs.vec()) && (lhs.w() == rhs.w());
00027 }
00028 
00029 template<typename _Scalar, int _Options>
00030 bool operator!=(const Eigen::Quaternion<_Scalar,_Options>& lhs, const Eigen::Quaternion<_Scalar,_Options>& rhs)
00031 {
00032         return !(lhs == rhs);
00033 }
00034 
00035 } // NAMESPACE
00036 
00037 #endif /* OPERATOROVERLOAD_HPP_ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Defines


telekyb_base
Author(s): Dr. Antonio Franchi and Martin Riedel
autogenerated on Mon Nov 11 2013 11:12:34