Skip to content

Commit

Permalink
#125 Move graph_interface.hpp into a new folder <ureact/core/>
Browse files Browse the repository at this point in the history
* move all graph_interface.hpp content into a new public interface ureact::core
  • Loading branch information
YarikTH committed Sep 4, 2023
1 parent f8d544c commit f7e707a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/ureact/detail/observer.inl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ UREACT_FUNC const std::shared_ptr<observer_node>& observer_internals::get_node_p
return m_node;
}

UREACT_FUNC node_id observer_internals::get_node_id() const
UREACT_FUNC core::node_id observer_internals::get_node_id() const
{
return m_node->get_node_id();
}
Expand Down
2 changes: 1 addition & 1 deletion include/ureact/observer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class UREACT_API observer_internals
UREACT_WARN_UNUSED_RESULT std::shared_ptr<observer_node>& get_node_ptr();
UREACT_WARN_UNUSED_RESULT const std::shared_ptr<observer_node>& get_node_ptr() const;

UREACT_WARN_UNUSED_RESULT node_id get_node_id() const;
UREACT_WARN_UNUSED_RESULT core::node_id get_node_id() const;

protected:
UREACT_WARN_UNUSED_RESULT react_graph& get_graph() const;
Expand Down

0 comments on commit f7e707a

Please sign in to comment.