Swiftgram/Postbox/Table.swift
2016-08-19 16:20:03 +03:00

18 lines
297 B
Swift

import Foundation
class Table {
final let valueBox: ValueBox
final let tableId: Int32
init(valueBox: ValueBox, tableId: Int32) {
self.valueBox = valueBox
self.tableId = tableId
}
func clearMemoryCache() {
}
func beforeCommit() {
}
}