JNI is wanky. Finally about to return an object from C++ to Java/Kotlin

This commit is contained in:
kdeng00
2019-10-05 17:30:37 -04:00
parent d3bcbd28ef
commit 33ac4c6fcf
86 changed files with 761 additions and 226 deletions
+3
View File
@@ -15,7 +15,10 @@ namespace repository {
class SongRepository {
public:
std::vector<model::Song> fetchSongs(const std::string&, const std::string&);
model::Song retrieveSong(const std::string&, const int);
private:
static size_t respBodyRetriever(void*, size_t, size_t, char*);
};
}