bytedeco / sample-projects

Sample project files for JavaCPP, JavaCPP Presets, and JavaCV
218 stars 173 forks source link

error: ‘MultiplyDemo’ has not been declared #48

Closed nitin2212 closed 4 years ago

nitin2212 commented 4 years ago

In the example : https://github.com/bytedeco/sample-projects/tree/master/javacpp-mvn-simple-demo

When I modify the class by extending Pointer, it gives error :

error: ‘MultiplyDemo’ has not been declared

Why ?

saudet commented 4 years ago

Because there is no C++ class named MultiplyDemo. You'll need to create one for this to work.

nitin2212 commented 4 years ago

Alright. I got it ! Thank you.