summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schanda <schanda@itestra.de>2013-10-09 11:56:34 +0200
committerJohannes Schanda <schanda@itestra.de>2013-10-09 11:56:34 +0200
commit34a4f53294f5d699d91e9ce700184a367f2d40a6 (patch)
tree88d082e8ffb19d4275a973318f3a5b3cdec3b2cf
parent00ff412305bf15df3bf1b267f2d599656f84b26f (diff)
downloadgenivi-common-api-runtime-34a4f53294f5d699d91e9ce700184a367f2d40a6.tar.gz
Promote runtime pointer to public
-rw-r--r--src/CommonAPI/Factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommonAPI/Factory.h b/src/CommonAPI/Factory.h
index ba48bf4..ccf9004 100644
--- a/src/CommonAPI/Factory.h
+++ b/src/CommonAPI/Factory.h
@@ -52,6 +52,7 @@ class Factory {
typedef std::function<void(std::vector<std::string>&) > GetAvailableServiceInstancesCallback;
typedef std::function<void(bool)> IsServiceInstanceAliveCallback;
+
/**
* \brief Creates factory. Don't call manually.
*
@@ -296,9 +297,8 @@ class Factory {
const std::string& domain) {
return false;
}
-
- private:
std::shared_ptr<Runtime> runtime_;
+ private:
const MiddlewareInfo* middlewareInfo_;