Added so-far empty service root node classes.
This commit is contained in:
parent
4eb76509a8
commit
d390ea2df6
@ -428,9 +428,11 @@ set(APP_SOURCES
|
|||||||
src/services/standard/gui/formstandardfeeddetails.cpp
|
src/services/standard/gui/formstandardfeeddetails.cpp
|
||||||
src/services/standard/gui/formstandardimportexport.cpp
|
src/services/standard/gui/formstandardimportexport.cpp
|
||||||
src/services/standard/standardserviceentrypoint.cpp
|
src/services/standard/standardserviceentrypoint.cpp
|
||||||
|
src/services/standard/standardserviceroot.cpp
|
||||||
|
|
||||||
# TT-RSS feed service sources.
|
# TT-RSS feed service sources.
|
||||||
src/services/tt-rss/ttrssserviceentrypoint.cpp
|
src/services/tt-rss/ttrssserviceentrypoint.cpp
|
||||||
|
src/services/tt-rss/ttrssserviceroot.cpp
|
||||||
|
|
||||||
# NETWORK-WEB sources.
|
# NETWORK-WEB sources.
|
||||||
src/network-web/basenetworkaccessmanager.cpp
|
src/network-web/basenetworkaccessmanager.cpp
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include "services/abstract/serviceroot.h"
|
#include "services/abstract/serviceroot.h"
|
||||||
|
|
||||||
|
|
||||||
ServiceRoot::ServiceRoot() {
|
ServiceRoot::ServiceRoot(RootItem *parent) : RootItem(parent) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ServiceRoot::~ServiceRoot() {
|
ServiceRoot::~ServiceRoot() {
|
||||||
|
@ -18,11 +18,15 @@
|
|||||||
#ifndef SERVICEROOT_H
|
#ifndef SERVICEROOT_H
|
||||||
#define SERVICEROOT_H
|
#define SERVICEROOT_H
|
||||||
|
|
||||||
|
#include "core/rootitem.h"
|
||||||
|
|
||||||
|
|
||||||
// THIS IS the root node of the service.
|
// THIS IS the root node of the service.
|
||||||
// TODO: Inherit proper base root class for this.
|
// NOTE: The root usually contains some core functionality of the
|
||||||
class ServiceRoot {
|
// service like service account username/password etc.
|
||||||
|
class ServiceRoot : public RootItem {
|
||||||
public:
|
public:
|
||||||
explicit ServiceRoot();
|
explicit ServiceRoot(RootItem *parent = NULL);
|
||||||
virtual ~ServiceRoot();
|
virtual ~ServiceRoot();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user