aboutsummaryrefslogtreecommitdiffstats
path: root/include/rba/RBAModel.hpp
diff options
context:
space:
mode:
authorAnusha Gugale <external.agogale@jp.adit-jv.com>2021-01-19 20:45:04 +0530
committerKenji Hosokawa <khosokawa@jp.adit-jv.com>2021-01-20 23:18:51 +0900
commitd7b299cbd838eac7a138c676a5693411a5368a91 (patch)
treeb92070a82ed04845693634533d02bbf20c598ce7 /include/rba/RBAModel.hpp
parentca54ecb2f7ffdc1d68ed72836f09058d3ef242ec (diff)
Removed internal APIs which require to include header files in src dir
Signed-off-by: Anusha Gugale <external.agogale@jp.adit-jv.com> Change-Id: I06b56a4ab21a41e407e28b3dde23dcc0aae4dcb7
Diffstat (limited to 'include/rba/RBAModel.hpp')
-rw-r--r--include/rba/RBAModel.hpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/rba/RBAModel.hpp b/include/rba/RBAModel.hpp
index 276201f..eb51338 100644
--- a/include/rba/RBAModel.hpp
+++ b/include/rba/RBAModel.hpp
@@ -33,13 +33,6 @@
#include "RBADisplay.hpp"
#include "RBAPositionContainer.hpp"
#include "RBAJsonParser.hpp"
-// internal {
-#include "RBAAreaSet.hpp"
-#include "RBAViewContentSet.hpp"
-#include "RBAZoneSet.hpp"
-#include "RBASoundContentSet.hpp"
-#include "RBAConstraint.hpp"
-// }
#ifdef _MSC_VER
#ifdef _WINDLL
@@ -215,38 +208,10 @@ public:
// internal {
/**
- * @brief Search for Model element with a name.
- * @param elementName Model element name.
- * @return Model element
- *
- * If the Model element name does not exist, returns nullptr.
- */
- virtual const RBAModelElement* findModelElement(const std::string& elementName) const=0;
-
- /**
- * @brief Returns all the sets of areas.
- * @return List of sets of areas
- */
- virtual const std::list<const RBAAreaSet*>& getAreaSets() const=0;
-
- /**
- * @brief Returns all the sets of view contents.
- * @return List of sets of view contents
- */
- virtual const std::list<const RBAViewContentSet*>& getViewContentSets() const=0;
-
- /**
* @brief Returns all the position containers.
* @return List of sets of position containers
*/
virtual const std::list<const RBAPositionContainer*>& getPositionContainers() const=0;
-
- /**
- * @brief Returns all the constraints.
- * @return List of constraints
- */
- virtual std::list<RBAConstraint*>& getConstraints()=0;
-
// }
};