vega
types.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <stdint.h>
4 #include <ostream>
5 
6 namespace vega {
7  union Byte {
8  uint8_t u;
9  int8_t i;
10  char c;
11  // TODO: implicit constructors?
12 
13  bool operator==(const Byte& other) const;
14  bool operator!=(const Byte& other) const;
15 
16  friend std::ostream& operator<<(std::ostream& os, const Byte& byte);
17  };
18 
19  union Word {
20  uint16_t u;
21  int16_t i;
22 
23  bool operator==(const Word& other) const;
24  bool operator!=(const Word& other) const;
25 
26  friend std::ostream& operator<<(std::ostream& os, const Word& word);
27  };
28 
29  union Long {
30  uint32_t u;
31  int32_t i;
32 
33  bool operator==(const Long& other) const;
34  bool operator!=(const Long& other) const;
35 
36  friend std::ostream& operator<<(std::ostream& os, const Long& l);
37  };
38 }
int8_t i
Definition: types.h:9
bool operator!=(const Byte &other) const
Definition: types.h:19
int16_t i
Definition: types.h:21
uint32_t u
Definition: types.h:30
bool operator==(const Byte &other) const
char c
Definition: types.h:10
Definition: types.h:7
friend std::ostream & operator<<(std::ostream &os, const Byte &byte)
Definition: types.h:29
uint8_t u
Definition: types.h:8
uint16_t u
Definition: types.h:20
int32_t i
Definition: types.h:31
Definition: age.h:6