mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
21 lines
378 B
C++
21 lines
378 B
C++
|
#include "completionmanager.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
CompletionManager::CompletionManager()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
CompletionModel *CompletionManager::createModel(const std::string &channelName)
|
||
|
{
|
||
|
CompletionModel *ret = new CompletionModel();
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
void CompletionManager::updateModel(CompletionModel *model, const std::string &channelName)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace chatterino
|