diff --git a/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/QQAndroidBot.kt b/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/QQAndroidBot.kt index a33d63638..105eeb56b 100644 --- a/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/QQAndroidBot.kt +++ b/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/QQAndroidBot.kt @@ -25,10 +25,10 @@ internal abstract class QQAndroidBotBase constructor( context: CoroutineContext ) : BotImpl(account, logger, context) { override val qqs: ContactList - get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates. + get() = TODO("not implemented") override fun getQQ(id: Long): QQ { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override fun createNetworkHandler(coroutineContext: CoroutineContext): QQAndroidBotNetworkHandler { @@ -36,33 +36,33 @@ internal abstract class QQAndroidBotBase constructor( } override val groups: ContactList - get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates. + get() = TODO("not implemented") override suspend fun getGroup(id: GroupId): Group { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun getGroup(internalId: GroupInternalId): Group { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun getGroup(id: Long): Group { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun login(configuration: BotConfiguration) { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun Image.getLink(): ImageLink { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun addFriend(id: Long, message: String?, remark: String?): AddFriendResult { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun approveFriendAddRequest(id: Long, remark: String?) { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } } \ No newline at end of file diff --git a/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/network/QQAndroidBotNetworkHandler.kt b/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/network/QQAndroidBotNetworkHandler.kt index 5df914ceb..7a0c51b91 100644 --- a/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/network/QQAndroidBotNetworkHandler.kt +++ b/mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/network/QQAndroidBotNetworkHandler.kt @@ -11,7 +11,7 @@ internal class QQAndroidBotNetworkHandler(override val bot: QQAndroidBot) : BotN override val supervisor: CompletableJob = SupervisorJob(bot.coroutineContext[Job]) override suspend fun login() { - TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + TODO("not implemented") } override suspend fun awaitDisconnection() {