literal.hpp 190 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef GUARD_RTGLIB_LITERAL_HPP
#define GUARD_RTGLIB_LITERAL_HPP

#include <rtg/shape.hpp>

namespace rtg {

struct literal 
{
    std::vector<char> buffer;
    shape shape_;
};

}

#endif