2019-01-27 14:26:11 +01:00
|
|
|
//
|
2021-08-28 07:32:31 +02:00
|
|
|
// ContentProvider.swift
|
2019-01-27 14:26:11 +01:00
|
|
|
// pass
|
|
|
|
|
//
|
|
|
|
|
// Created by Mingshen Sun on 12/2/2017.
|
|
|
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
protocol ContentProvider {
|
|
|
|
|
func getContent() -> String?
|
|
|
|
|
func setContent(content: String?)
|
|
|
|
|
}
|