2
votes
4answers
376 views
Not necessary to export class with only virtual/inline functions?
In C++ on Win32:
Suppose I have a DLL with a header file that declares a class. The DLL exports some means of obtaining a pointer/reference to an instance of that class, such as a factory …
-1
votes
wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?
You want to use the function:
bool wxEntryStart(int& argc, wxChar **argv)
instead of wxEntry. It doesn't call your app's OnInit() or run the main loop.
…
1
vote
C++ IDE for Linux?
I'm glad you seem to be working it out with vim. But I have to say, I'm a bit mystified about how you already "really like Eclipse for Java", implying that you're already familiar with how it works …
1
vote
Is there a Windows/MSVC equivalent to the -rpath linker flag?
Sadly there is no direct analogue to RPATH. There are a number of alternative possibilities, each of them most likely undesirable to you in its own special way.
Given that you need a differ …
