Hi Im trying to use the FLTK library to draw a bunch of images. My problem is that I cannot open any *.jpg file with FLTK's Fl_JPEG_Image
std::vector<Img> displayedImages; // my clas containning paths to images loaded from database
std::vector<Fl_JPEG_Image*> images;
std::vector<Fl_Box*> boxes;
Fl_JPEG_Image im(displayedImages.at(i).getThumb().c_str()); // this line gives an error while input provided is absolute path of a file
images.push_back(&im);
the error I keep getting is :
unresolved external symbool "public: __thiscall Fl_JPEG_Image(const cahr*)"
any idea what that means and how to resolve this bug?