diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/rba/RBAJsonParser.hpp | 7 | ||||
-rw-r--r-- | include/rba/RBAModel.hpp | 35 |
2 files changed, 0 insertions, 42 deletions
diff --git a/include/rba/RBAJsonParser.hpp b/include/rba/RBAJsonParser.hpp index 2f9404a..449a24b 100644 --- a/include/rba/RBAJsonParser.hpp +++ b/include/rba/RBAJsonParser.hpp @@ -38,10 +38,6 @@ namespace rba { class RBAModel; -// internal { -class RBAExpression; -class RBAModelFactory; -// } /** * @class RBAJsonParser @@ -78,9 +74,6 @@ public: */ RBAModel* parse(const std::string& filename); - // internal { - RBAJsonParser(RBAModelFactory* factory); - // } private: class Impl; 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; - // } }; |