13 lines
388 B
Kotlin
13 lines
388 B
Kotlin
package ru.landgrafhomyak.db.skeleton1.api
|
|
|
|
public interface ObjectClass<@Suppress("unused") UE : Any?> {
|
|
public fun interface ImplementationsProvider {
|
|
public fun provideStatementImplementations_databaseType(scope: Scope)
|
|
|
|
public interface Scope {
|
|
public fun <CLASS : ObjectClass<*>> addImplementation(
|
|
key: Driver<*, *, *, *, *, *, *, *, *, CLASS>, type: CLASS
|
|
)
|
|
}
|
|
}
|
|
} |