Skip to content

Commit f7e707a

Browse files
committed
#125 Move graph_interface.hpp into a new folder <ureact/core/>
* move all graph_interface.hpp content into a new public interface ureact::core
1 parent f8d544c commit f7e707a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/ureact/detail/observer.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ UREACT_FUNC const std::shared_ptr<observer_node>& observer_internals::get_node_p
3434
return m_node;
3535
}
3636

37-
UREACT_FUNC node_id observer_internals::get_node_id() const
37+
UREACT_FUNC core::node_id observer_internals::get_node_id() const
3838
{
3939
return m_node->get_node_id();
4040
}

include/ureact/observer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class UREACT_API observer_internals
3333
UREACT_WARN_UNUSED_RESULT std::shared_ptr<observer_node>& get_node_ptr();
3434
UREACT_WARN_UNUSED_RESULT const std::shared_ptr<observer_node>& get_node_ptr() const;
3535

36-
UREACT_WARN_UNUSED_RESULT node_id get_node_id() const;
36+
UREACT_WARN_UNUSED_RESULT core::node_id get_node_id() const;
3737

3838
protected:
3939
UREACT_WARN_UNUSED_RESULT react_graph& get_graph() const;

0 commit comments

Comments
 (0)