What is command routing in MFC
Answer / bob
Check the Command pattern in Gof books, MFC almost use it in
the same way:
SubWidget in the dialog will catch it firstly, it will
forward it to Parent window(the dialog) if *request is not
for it or no handler defined.
This procedure runs recursively, until one handle it or pass
it to application object. Application will omit unknown
command by default
Is This Answer Correct ? | 2 Yes | 1 No |
what is virtual function in c++
Do you know about multiple inheritance?
What is overriding in oop?
What is the difference between pass by reference and pass by value?
what is the use of mutable key word
what is the basic concept of inheritance?
what is difference between objects and function
why freind function takes more parameter than normal member function in c++?
Can we create object of interface?
What is abstraction oop?
how to find the largest of given numbers in an array
Which is the only operator in C++ which can be overloaded but NOT inherited?