Swiftgram/Postbox/Table.swift
2016-11-17 22:16:50 +03:00

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() {
}
}