Wiselib
wiselib.testing/external_interface/pc/pose.h
Go to the documentation of this file.
00001 // vim: set noexpandtab ts=4 sw=4:
00002 
00003 #ifndef POSE_H
00004 #define POSE_H
00005 
00006 namespace wiselib {
00007 
00008 template<typename Angle_P, typename Distance_P>
00009 class Pose {
00010    public:
00011       typedef Angle_P angle_t;
00012       typedef Distance_P distance_t;
00013       
00014       angle_t angle;
00015       
00016       struct {
00017          distance_t x, y;
00018       } position;
00019       
00020    private:
00021 };
00022 
00023 } // namespace wiselib
00024 
00025 #endif // POSE_H
00026 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines