Figured out out to get the field values of a java/kotlin class object from C/C++

This commit is contained in:
kdeng00
2019-10-11 20:57:22 -04:00
parent 878c62f2cb
commit 58825427d0
12 changed files with 268 additions and 97 deletions
+1
View File
@@ -14,6 +14,7 @@ class Song
{
public:
Song() = default;
Song(const int id) : id(id) { }
Song(const int id, const std::string& title, const std::string& artist,
const std::string& album, const std::string& genre,
const int duration, const int year) :