hpp-corbaserver  4.9.0
Corba server for Humanoid Path Planner applications
common.idl
Go to the documentation of this file.
1 // Copyright (C) 2009, 2010 by Florent Lamiraux, Thomas Moulard, JRL.
2 //
3 // This file is part of the hpp-corbaserver.
4 //
5 // This software is provided "as is" without warranty of any kind,
6 // either expressed or implied, including but not limited to the
7 // implied warranties of fitness for a particular purpose.
8 //
9 // See the COPYING file for more information.
10 
11 #ifndef HPP_COMMON_IDL
12 #define HPP_COMMON_IDL
13 
14 #define HPP_EXPOSE_MEMORY_DEALLOCATION void deleteThis() raises (Error);
15 
16 module hpp
17 {
18  typedef double value_type;
19  typedef long long size_type;
20 
22  typedef sequence <string> Names_t;
24  exception Error
25  {
26  string msg;
27  };
28  typedef sequence<boolean> boolSeq;
29  typedef sequence<long> intSeq;
30  typedef sequence<intSeq> intSeqSeq;
32  typedef sequence<double> floatSeq;
33  typedef sequence<floatSeq> floatSeqSeq;
34 
36  typedef double Transform_ [7];
37  typedef sequence<Transform_> TransformSeq;
40  typedef double Quaternion_ [4];
41 };
42 
43 #endif
string msg
Definition: common.idl:26
Implement CORBA interface ``Obstacle&#39;&#39;.
double value_type
Definition: common.idl:18
sequence< floatSeq > floatSeqSeq
Definition: common.idl:33
Corba exception travelling through the Corba channel.
Definition: common.idl:24
sequence< string > Names_t
Sequence of names.
Definition: common.idl:22
sequence< long > intSeq
Definition: common.idl:29
sequence< boolean > boolSeq
Definition: common.idl:28
double Quaternion_[4]
Definition: common.idl:40
sequence< Transform_ > TransformSeq
Definition: common.idl:37
double Transform_[7]
Element of SE(3) represented by a vector and a unit quaternion.
Definition: common.idl:36
sequence< double > floatSeq
Robot configuration is defined by a sequence of dof value.
Definition: common.idl:32
sequence< intSeq > intSeqSeq
Definition: common.idl:30
long long size_type
Definition: common.idl:19