Tatooine
node_id_less.h
Go to the documentation of this file.
1#ifndef TATOOINE_FLOWEXPLORER_NODE_ID_LESS_H
2#define TATOOINE_FLOWEXPLORER_NODE_ID_LESS_H
3//==============================================================================
4#include <imgui-node-editor/imgui_node_editor.h>
5//==============================================================================
7//==============================================================================
9 bool operator()(const ax::NodeEditor::NodeId& lhs,
10 const ax::NodeEditor::NodeId& rhs) const {
11 return lhs.AsPointer() < rhs.AsPointer();
12 }
13};
14//==============================================================================
15} // namespace tatooine::flowexplorer
16//==============================================================================
17#endif
Definition: directories.h:6
Definition: node_id_less.h:8
bool operator()(const ax::NodeEditor::NodeId &lhs, const ax::NodeEditor::NodeId &rhs) const
Definition: node_id_less.h:9