diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-11-06 18:37:11 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-11-06 18:37:11 +0300 |
| commit | 2f8c92f261586f68a976efce0cfcdd0401f402e0 (patch) | |
| tree | 33189cc48987789dff4e7fba0a74d2b2326f0a04 /pkg/classes/stop.go | |
| parent | convert cm ticks correctly (diff) | |
| download | sdp.go-lp-parser.tar.gz sdp.go-lp-parser.tar.bz2 sdp.go-lp-parser.zip | |
dont try to understand it, feel itlp-parser
Diffstat (limited to 'pkg/classes/stop.go')
| -rw-r--r-- | pkg/classes/stop.go | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pkg/classes/stop.go b/pkg/classes/stop.go deleted file mode 100644 index 96bc1e4..0000000 --- a/pkg/classes/stop.go +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | package classes | ||
| 2 | |||
| 3 | import ( | ||
| 4 | "github.com/pektezol/bitreader" | ||
| 5 | ) | ||
| 6 | |||
| 7 | type Stop struct { | ||
| 8 | RemainingData []byte | ||
| 9 | } | ||
| 10 | |||
| 11 | func (stop *Stop) ParseStop(reader *bitreader.Reader) { | ||
| 12 | if reader.TryReadBool() { | ||
| 13 | stop.RemainingData = reader.TryReadBitsToSlice(uint64(reader.TryReadRemainingBits())) | ||
| 14 | } | ||
| 15 | } | ||