aboutsummaryrefslogtreecommitdiff
path: root/pkg/classes/stop.go
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-11-06 18:37:11 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-11-06 18:37:11 +0300
commit2f8c92f261586f68a976efce0cfcdd0401f402e0 (patch)
tree33189cc48987789dff4e7fba0a74d2b2326f0a04 /pkg/classes/stop.go
parentconvert cm ticks correctly (diff)
downloadsdp.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.go15
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 @@
1package classes
2
3import (
4 "github.com/pektezol/bitreader"
5)
6
7type Stop struct {
8 RemainingData []byte
9}
10
11func (stop *Stop) ParseStop(reader *bitreader.Reader) {
12 if reader.TryReadBool() {
13 stop.RemainingData = reader.TryReadBitsToSlice(uint64(reader.TryReadRemainingBits()))
14 }
15}