`\src\notation\view
\src\engraving\libmscore`
for Musescore.
I have a file in \view\noteinputcursor.cpp
that I need to do some math in, but the numbers need to come from \libmscore\stringdata.cpp
- i want the cursor i'm working with the know what fret I'm on to know how to highlight it, say a wide cursor or a narrow one.
what's a good way to reference that, and it has to work on anyone else that compiles it in the world too without adding stuff in environment or dependencies. the simplest way for everyone. ideally nobody outside of me (and those who review my hopeful future code) should even notice it.
tried just doing
#include stringdata.h
but then realized it wouldn't work since they're in different folders and the compiler only works downstream not upstream/sidestream/parallel stream etc.