remove qml

This commit is contained in:
Andrei Yankovich 2021-03-20 16:56:49 +03:00
parent f53a33a8bf
commit 11877dc7ac
9 changed files with 25 additions and 28 deletions

View File

@ -1,6 +0,0 @@
<RCC>
<qresource prefix="/">
<file>CQtDeployerServerModule/qmldir</file>
<file>CQtDeployerServerModule/CQtDeployerServer.qml</file>
</qresource>
</RCC>

View File

@ -1,12 +0,0 @@
//#
//# Copyright (C) 2021-2021 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
import QtQuick 2.15
Item {
}

View File

@ -1,3 +0,0 @@
module QuasarAppCreditsModule
CQtDeployerServer 1.0 CQtDeployerServer.qml

View File

@ -5,10 +5,10 @@
//# of this license document, but changing it is not allowed.
//#
#include "CQtDeployerServer.h"
#include "CQtServer.h"
namespace CQtDeployerServer {
namespace CQT {
bool init() {
initCQtDeployerServerResources();

View File

@ -5,12 +5,10 @@
//# of this license document, but changing it is not allowed.
//#
#include "CQtDeployerServer_global.h"
namespace CQtDeployerServer {
inline void initCQtDeployerServerResources() { Q_INIT_RESOURCE(CQtDeployerServer); }
#include "CQtServer_global.h"
inline void initCQtDeployerServerResources() { Q_INIT_RESOURCE(CQT); }
namespace CQT {
bool CQtDeployerServer_EXPORT init();

View File

@ -0,0 +1,3 @@
<RCC>
<qresource prefix="/"/>
</RCC>

View File

@ -0,0 +1,6 @@
#include "idistributor.h"
iDistributor::iDistributor()
{
}

View File

@ -0,0 +1,11 @@
#ifndef IDISTRIBUTOR_H
#define IDISTRIBUTOR_H
class iDistributor
{
public:
iDistributor();
};
#endif // IDISTRIBUTOR_H