Add new functions into the window delegate to query node id

This commit is contained in:
Alexander Bock
2022-09-21 14:34:36 +02:00
parent f502922338
commit 8f98320bf6
2 changed files with 10 additions and 0 deletions

View File

@@ -107,6 +107,10 @@ struct WindowDelegate {
void (*setScreenshotFolder)(std::string) = [](std::string) {};
void (*showStatistics)(bool) = [](bool) {};
int (*numberOfNodes)() = []() { return 0; };
int (*currentNode)() = []() { return 0; };
};
} // namespace openspace