2018-02-06 13:55:35 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
2023-04-06 07:23:37 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-02-06 13:55:35 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2018-04-26 12:42:33 +00:00
|
|
|
#include "QskTextPredictor.h"
|
2017-07-21 16:21:34 +00:00
|
|
|
|
2022-02-04 15:10:44 +00:00
|
|
|
#include <QVector>
|
|
|
|
|
|
|
|
QskTextPredictor::QskTextPredictor( QObject* parent )
|
2018-08-03 06:15:28 +00:00
|
|
|
: QObject( parent )
|
2017-07-21 16:21:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-26 12:42:33 +00:00
|
|
|
QskTextPredictor::~QskTextPredictor()
|
2017-07-21 16:21:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-26 12:42:33 +00:00
|
|
|
#include "moc_QskTextPredictor.cpp"
|