18 lines
428 B
C++
18 lines
428 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) The authors
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#ifndef QSK_QML_MODULE_H
|
|
#define QSK_QML_MODULE_H
|
|
|
|
namespace QskQmlModule
|
|
{
|
|
const char name[] = "Skinny";
|
|
|
|
// major, minor
|
|
const int version[] = { 1, 0 };
|
|
}
|
|
|
|
#endif
|