Skip to content

Commit

Permalink
add types to Number
Browse files Browse the repository at this point in the history
issue #27
  • Loading branch information
Valentin Noel committed Oct 22, 2013
1 parent 4f427e4 commit dd59322
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions libraries/BasicElement/src/BasicElement/SubElements/Number.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@
namespace basic_element
{

typedef char int8;
typedef unsigned char uint8;
typedef short int16;
typedef unsigned short uint16;
typedef int int32;
typedef unsigned int uint32;
typedef signed long long int64;
typedef unsigned long long uint64;

typedef long double ieeeExtended; // 80 bits IEEE Standard 754 floating point

class Number : public Element
{

Expand Down

0 comments on commit dd59322

Please sign in to comment.