Difference between revisions of "ESTADO DEL CAMBIO: Nuevos tipos de datos"

From The BABEL Development Site
(New page: Propuestas: <cpp> // Number of 100-nanosecond intervals since January 1, 1601 (UTC). typedef unsigned long long TTimeStamp; typedef sequence<string> SeqOfStrings; typedef sequence<octe...)
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
 
Propuestas:
 
Propuestas:
  
 
<cpp>
 
<cpp>
 +
 
// Number of 100-nanosecond intervals since January 1, 1601 (UTC).
 
// Number of 100-nanosecond intervals since January 1, 1601 (UTC).
typedef unsigned long long TTimeStamp;  
+
typedef unsigned long long TTimeStamp;   // NOTA: Este en realidad es solo x compat. con el tipo de la MRPT... no es muy importante.
  
 
typedef sequence<string> SeqOfStrings;
 
typedef sequence<string> SeqOfStrings;
Line 19: Line 19:
 
typedef sequence<unsigned long long> SeqOfULongLongs;
 
typedef sequence<unsigned long long> SeqOfULongLongs;
  
 +
// NOTA: Estos quizas se puedan quitar, aunq puntualmente pues si podrian venir bien...
 +
typedef double TMatrix22[2][2];
 
typedef double TMatrix33[3][3];
 
typedef double TMatrix33[3][3];
 
typedef double TMatrix44[4][4];
 
typedef double TMatrix44[4][4];
 +
typedef double TMatrix66[6][6];
 +
 
</cpp>
 
</cpp>
 +
 +
 +
* JA & JL: Elegir los definitivos.
 +
 +
 +
* JL: Meter en BABEL.idl & wiki.

Latest revision as of 19:58, 5 June 2009

Propuestas:

<cpp>

// Number of 100-nanosecond intervals since January 1, 1601 (UTC). typedef unsigned long long TTimeStamp; // NOTA: Este en realidad es solo x compat. con el tipo de la MRPT... no es muy importante.

typedef sequence<string> SeqOfStrings; typedef sequence<octet> SeqOfBytes; typedef sequence<boolean> SeqOfBools; typedef sequence<float> SeqOfFloats; typedef sequence<double> SeqOfDoubles;

typedef sequence<short> SeqOfShorts; typedef sequence<unsigned short> SeqOfUShorts; typedef sequence<long> SeqOfLongs; typedef sequence<unsigned long> SeqOfULongs;

typedef sequence<unsigned long long> SeqOfULongLongs;

// NOTA: Estos quizas se puedan quitar, aunq puntualmente pues si podrian venir bien... typedef double TMatrix22[2][2]; typedef double TMatrix33[3][3]; typedef double TMatrix44[4][4]; typedef double TMatrix66[6][6];

</cpp>


  • JA & JL: Elegir los definitivos.


  • JL: Meter en BABEL.idl & wiki.