mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
18 lines
305 B
Swift
18 lines
305 B
Swift
import Foundation
|
|
|
|
class Table {
|
|
final let valueBox: ValueBox
|
|
final let table: ValueBoxTable
|
|
|
|
init(valueBox: ValueBox, table: ValueBoxTable) {
|
|
self.valueBox = valueBox
|
|
self.table = table
|
|
}
|
|
|
|
func clearMemoryCache() {
|
|
}
|
|
|
|
func beforeCommit() {
|
|
}
|
|
}
|