mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
corregida compilaci?n
This commit is contained in:
parent
88d4d14d2a
commit
711b335756
@ -1,6 +1,5 @@
|
||||
#include "yacreader_local_client.h"
|
||||
#include "yacreader_comic_library.h"
|
||||
#include "yacreader_comic_info_library.h"
|
||||
#include "comic_db.h"
|
||||
|
||||
#include <QLocalSocket>
|
||||
|
||||
@ -20,12 +19,12 @@ void YACReaderLocalClient::readMessage()
|
||||
|
||||
}
|
||||
|
||||
void YACReaderLocalClient::requestComicInfo(QString library, YACReaderComicLibrary & comic)
|
||||
void YACReaderLocalClient::requestComicInfo(QString library, ComicDB & comic)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void YACReaderLocalClient::sendComicInfo(QString library, YACReaderComicLibrary & comic)
|
||||
void YACReaderLocalClient::sendComicInfo(QString library, ComicDB & comic)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <QObject>
|
||||
|
||||
class QLocalSocket;
|
||||
class YACReaderComicLibrary;
|
||||
class ComicDB;
|
||||
|
||||
class YACReaderLocalClient : public QObject
|
||||
{
|
||||
@ -16,8 +16,8 @@ signals:
|
||||
|
||||
public slots:
|
||||
void readMessage();
|
||||
void requestComicInfo(QString library, YACReaderComicLibrary & comic);
|
||||
void sendComicInfo(QString library, YACReaderComicLibrary & comic);
|
||||
void requestComicInfo(QString library, ComicDB & comic);
|
||||
void sendComicInfo(QString library, ComicDB & comic);
|
||||
|
||||
private:
|
||||
QLocalSocket * localSocket;
|
||||
|
@ -75,8 +75,6 @@ HEADERS += comic_flow.h \
|
||||
no_libraries_widget.h \
|
||||
import_widget.h \
|
||||
yacreader_local_server.h \
|
||||
../common/yacreader_comic_library.h \
|
||||
../common/yacreader_comic_info_library.h
|
||||
|
||||
SOURCES += comic_flow.cpp \
|
||||
create_library_dialog.cpp \
|
||||
@ -114,8 +112,6 @@ SOURCES += comic_flow.cpp \
|
||||
no_libraries_widget.cpp \
|
||||
import_widget.cpp \
|
||||
yacreader_local_server.cpp \
|
||||
../common/yacreader_comic_library.cpp \
|
||||
../common/yacreader_comic_info_library.cpp
|
||||
|
||||
|
||||
include(./server/server.pri)
|
||||
|
Loading…
x
Reference in New Issue
Block a user