14 lines
No EOL
242 B
C++
14 lines
No EOL
242 B
C++
#ifndef COMPLIB_SERVER_ENCODER_HPP
|
|
#define COMPLIB_SERVER_ENCODER_HPP
|
|
|
|
#include <vector>
|
|
#include <cstdint>
|
|
|
|
#define ENCODER_COUNT 4
|
|
|
|
class Encoder {
|
|
public:
|
|
static std::vector<int32_t> read_all();
|
|
};
|
|
|
|
#endif // COMPLIB_SERVER_ENCODER_HPP
|