WSJT-X/doc/design/DecoderRefactor.puml
2019-07-02 12:45:05 -05:00

18 lines
203 B
Plaintext

@startuml
interface IProtocol {
encode()
decode()
}
interface IDecoder
interface IEncoder
interface IDecode
IDecoder <-- IProtocol
IEncoder <-- IProtocol
class FT8
IProtocol <|-- FT8
@enduml