Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: LorienCat
  • Content: Threads
  • Order by date
  1. LorienCat

    How to do a pointer to a function into a class?

    Hehe..... one question, how to do pointer to a function into a c++ class? I tried: class lala { int f1(int, int); int f2(int, int); int (lala::*pf)(int, int); }; int lala::f1(int a, int b) { return a+b; } int lala::f2(int a, int b) { return a-b; } void main() { lala l; int a = 5, b =...

Part and Inventory Search

Back
Top