mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
19 lines
458 B
C++
19 lines
458 B
C++
#ifndef TIDS990_H
|
|
#define TIDS990_H
|
|
|
|
#define TIDS990_PAYLOAD_SIZE 288 /* bytes */
|
|
#define TIDS990_SECTOR_RECORD_SIZE 10 /* bytes */
|
|
#define TIDS990_DATA_RECORD_SIZE (TIDS990_PAYLOAD_SIZE + 4) /* bytes */
|
|
|
|
class Encoder;
|
|
class Decoder;
|
|
class DecoderProto;
|
|
class EncoderProto;
|
|
|
|
extern std::unique_ptr<Decoder> createTids990Decoder(const DecoderProto& config);
|
|
extern std::unique_ptr<Encoder> createTids990Encoder(const EncoderProto& config);
|
|
|
|
#endif
|
|
|
|
|