truck-code
buffer.h
Go to the documentation of this file.
1 
14 #ifndef INCLUDE_UTILS_BUFFER_H_
15 #define INCLUDE_UTILS_BUFFER_H_
16 
17 
23 public:
35  void init(int max_data, int item_size);
36 
46  int get_circular_index();
47 
56  int empty();
57 
63  void add(void *new_msg);
64 
70  void *read_first();
71 
77  void *pop_first();
78 
80  int get_count();
81 
82 private:
83  void *_data_array;
84  int _size;
85  int _count;
86  int _start;
87 };
88 
89 
90 #endif /* INCLUDE_UTILS_BUFFER_H_ */
void add(void *new_msg)
Definition: buffer.cpp:48
int get_circular_index()
Definition: buffer.cpp:26
void init(int max_data, int item_size)
Definition: buffer.cpp:14
int get_count()
Definition: buffer.cpp:85
Definition: buffer.h:22
int empty()
Definition: buffer.cpp:77
void * read_first()
Definition: buffer.cpp:55
void * pop_first()
Definition: buffer.cpp:61