20 lines
464 B
C++
20 lines
464 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) The authors
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#include "QskTextPredictor.h"
|
|
|
|
#include <QVector>
|
|
|
|
QskTextPredictor::QskTextPredictor( QObject* parent )
|
|
: QObject( parent )
|
|
{
|
|
}
|
|
|
|
QskTextPredictor::~QskTextPredictor()
|
|
{
|
|
}
|
|
|
|
#include "moc_QskTextPredictor.cpp"
|