Pure Virtual Functions
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
How do I declare a pure virtual function that has an argument list? All the examples I've seen always seem to use the simple Shape function example. Paul Jahans
It should be something like: class CMyClass { virtual int MyFunction(int parameter1, int parameter2, ....) = 0 ; } ; Roger Allen Sonork 100.10016 If I'm not breathing, I'm either dead or holding my breath. A fool jabbers, while a wise man listens. But is he so wise to listen to the fool?