almost there, just code completion left...smart pointers?
Posted: Thu Nov 15, 2012 3:47 pm
I've almost migrated completely from MSVC to CodeLite(hooray!) but there is one last thing I need to figure out. I can't seem to get my class methods to show for smart pointers. For example, I have a class called socketServer. For example:
ScopedPointer<socketServer> sock = new socketServer();
sock->
ScopedPointer in this case is a class used to hold a pointer to an object. It's a class provided with the GUI library I'm using. Instead of listing the members from the object passed to it, I only get the members for ScopedPointer. Any ideas on how to solve this? I'm so close to making Linux my main development environment, I can see the finishing line!
ScopedPointer<socketServer> sock = new socketServer();
sock->
ScopedPointer in this case is a class used to hold a pointer to an object. It's a class provided with the GUI library I'm using. Instead of listing the members from the object passed to it, I only get the members for ScopedPointer. Any ideas on how to solve this? I'm so close to making Linux my main development environment, I can see the finishing line!