Go to the documentation of this file.00001 #include "PoseSplDcps.h"
00002 #include "ccpp_Pose.h"
00003
00004 const char *
00005 __Pose__name(void)
00006 {
00007 return (const char*)"Pose";
00008 }
00009
00010 const char *
00011 __Pose__keys(void)
00012 {
00013 return (const char*)"";
00014 }
00015
00016 #include <v_kernel.h>
00017 #include <v_topic.h>
00018 #include <os_stdlib.h>
00019 #include <string.h>
00020 #include <os_report.h>
00021
00022 c_bool
00023 __Pose__copyIn(
00024 c_base base,
00025 struct Pose *from,
00026 struct _Pose *to)
00027 {
00028 c_bool result = TRUE;
00029
00030 if(result){
00031 extern c_bool __Point__copyIn(c_base, Point *, _Point *);
00032 result = __Point__copyIn(base, &from->position, &to->position);
00033 }
00034 if(result){
00035 extern c_bool __Quaternion__copyIn(c_base, Quaternion *, _Quaternion *);
00036 result = __Quaternion__copyIn(base, &from->orientation, &to->orientation);
00037 }
00038 return result;
00039 }
00040
00041 void
00042 __Pose__copyOut(
00043 void *_from,
00044 void *_to)
00045 {
00046 struct _Pose *from = (struct _Pose *)_from;
00047 struct Pose *to = (struct Pose *)_to;
00048 {
00049 extern void __Point__copyOut(void *, void *);
00050 __Point__copyOut((void *)&from->position, (void *)&to->position);
00051 }
00052 {
00053 extern void __Quaternion__copyOut(void *, void *);
00054 __Quaternion__copyOut((void *)&from->orientation, (void *)&to->orientation);
00055 }
00056 }
00057