mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 00:04:26 -04:00 
			
		
		
		
	Headless server: simplify system config logger
This commit is contained in:
		
							
								
								
									
										27
									
								
								YACReader/yacreader_local_client.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								YACReader/yacreader_local_client.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,27 @@ | ||||
| #ifndef YACREADER_LOCAL_CLIENT_H | ||||
| #define YACREADER_LOCAL_CLIENT_H | ||||
|  | ||||
| #include <QObject> | ||||
|  | ||||
| class QLocalSocket; | ||||
| class ComicDB; | ||||
|  | ||||
| class YACReaderLocalClient : public QObject | ||||
| { | ||||
|     Q_OBJECT | ||||
| public: | ||||
|     explicit YACReaderLocalClient(QObject *parent = 0); | ||||
|     ~YACReaderLocalClient(); | ||||
| signals: | ||||
|     void finished(); | ||||
| public slots: | ||||
|     void readMessage(); | ||||
|     bool requestComicInfo(quint64 libraryId, ComicDB & comic,QList<ComicDB> & siblings); | ||||
|     bool sendComicInfo(quint64 libraryId, ComicDB & comic); | ||||
|  | ||||
| private: | ||||
|     QLocalSocket * localSocket; | ||||
|      | ||||
| }; | ||||
|  | ||||
| #endif // YACREADER_LOCAL_CLIENT_H | ||||
		Reference in New Issue
	
	Block a user