ESTADO DEL CAMBIO: Nuevos tipos de datos

From The BABEL Development Site
Revision as of 22:53, 27 May 2009 by Jlblanco (talk | contribs) (Protected "ESTADO DEL CAMBIO: Nuevos tipos de datos" [edit=autoconfirmed:move=autoconfirmed])

Propuestas:

<cpp> // Number of 100-nanosecond intervals since January 1, 1601 (UTC). typedef unsigned long long TTimeStamp;

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;

typedef double TMatrix33[3][3]; typedef double TMatrix44[4][4]; </cpp>