1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-06-25 14:45:14 -04:00
WSJT-X/doc/design/DecoderRefactor.puml

18 lines
203 B
Plaintext
Raw Normal View History

2019-07-02 11:50:55 -05:00
@startuml
interface IProtocol {
encode()
decode()
}
interface IDecoder
interface IEncoder
interface IDecode
2019-07-02 12:45:05 -05:00
IDecoder <-- IProtocol
IEncoder <-- IProtocol
2019-07-02 11:50:55 -05:00
class FT8
IProtocol <|-- FT8
@enduml