I dont have much time to study OPENGL or QT. So want to use
graphics.h. But that file is not found in the library directory of
codeblocks. So please give me ideas how can I use graphics in
codeblocks? thank you
-NSS
Just do
echo "#error "TODO..." > graphics.h
and you're done. ;)
Seriously, you have a slight misconception. A *.h or *.hpp file defines an
interface. Somewhere, there must be an implementation, which is in a library
file that you link with your program.
Now, "graphics.h", where do you think this comes from? It surely should
belong to a library, but the name is so general and meaningless that it's
impossible to tell which one. Then, when you know which library you want to
use, I humbly suggest reading its instructions. We will help you with things
that aren't clear.
Uli