roviz  0.7
Code Documentation of roviz
sparse_p.h
1 #ifndef SPARSE_P_H
2 #define SPARSE_P_H
3 
4 #include "core/export_handling.h"
5 
6 #if ROVIZ_BACKEND == ROVIZ_BACKEND_Dev
7 #include <QPainter>
8 #include <QLabel>
9 #endif
10 
11 #include <vector>
12 #include "streams/stream_object_p.h"
13 #include "streams/image.h"
14 #include "streams/sparse.h"
15 
16 template<class T>
18 {
19 public:
20  std::vector<T> data;
21  T default_value;
22  Image base_image;
23 };
24 
25 #endif // SPARSE_P_H
Definition: sparse.h:26
Private part of the StreamObject class.
Definition: stream_object_p.h:11
A portable image class with smart memory management.
Definition: image.h:35