Rename all protos to end with 'Proto' to avoid name conflicts.

This commit is contained in:
David Given
2021-05-13 18:05:08 +02:00
parent 639588fa68
commit 5a186b6960
37 changed files with 162 additions and 165 deletions

View File

@@ -12,7 +12,7 @@ class FluxmapReader;
class RawRecord;
class RawBits;
class Track;
class Decoder;
class DecoderProto;
typedef std::vector<std::unique_ptr<RawRecord>> RawRecordVector;
typedef std::vector<std::unique_ptr<Sector>> SectorVector;
@@ -32,7 +32,7 @@ class AbstractDecoder
public:
virtual ~AbstractDecoder() {}
static std::unique_ptr<AbstractDecoder> create(const Decoder& config);
static std::unique_ptr<AbstractDecoder> create(const DecoderProto& config);
public:
enum RecordType