mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
19 lines
490 B
C++
19 lines
490 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 AbstractEncoder;
|
|
class AbstractDecoder;
|
|
class DecoderProto;
|
|
class EncoderProto;
|
|
|
|
extern std::unique_ptr<AbstractDecoder> createTids990Decoder(const DecoderProto& config);
|
|
extern std::unique_ptr<AbstractEncoder> createTids990Encoder(const EncoderProto& config);
|
|
|
|
#endif
|
|
|
|
|