diff options
Diffstat (limited to 'lldb/utils/sync-source/lib/transfer/protocol.py')
-rw-r--r-- | lldb/utils/sync-source/lib/transfer/protocol.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/utils/sync-source/lib/transfer/protocol.py b/lldb/utils/sync-source/lib/transfer/protocol.py new file mode 100644 index 00000000000..0f89db7d87e --- /dev/null +++ b/lldb/utils/sync-source/lib/transfer/protocol.py @@ -0,0 +1,8 @@ +class Protocol(object): + + def __init__(self, options, config): + self.options = options + self.config = config + + def transfer(transfer_specs, dry_run): + raise "transfer must be overridden by transfer implementation" |