Declare it in the class' protected or private section, however it will have to be static, because glutDisplayFunc cannot take member functions as parameters.
If glutDisplayFunc() has a void* parameter you can specify that gets passed to the callback function, then pass it the
"this" pointer of the object. Then the callback has to reinterpret_cast the void* to a pointer-to-object. That's your
only option.