Re: [algogeeks] Re: Function Name Mismatch

2012-02-09 Thread Aman Kumar
Thanx for reply can you provide some code snippet here? or some link for it. On Tue, Feb 7, 2012 at 11:30 PM, Prem Krishna Chettri wrote: > This is a simple implementation to Factory Design Pattern. What you have > to do is make an arbitrary class (Your Adapter) and always call this. > Howeve

Re: [algogeeks] Re: Function Name Mismatch

2012-02-07 Thread Prem Krishna Chettri
This is a simple implementation to Factory Design Pattern. What you have to do is make an arbitrary class (Your Adapter) and always call this. However, the implementation of this class should be smart enough to route your call accordingly. As suggested by DON , its the c++ implementation of Factor

[algogeeks] Re: Function Name Mismatch

2012-02-07 Thread Don
Provide an interface class for the client to access. The client needs to know the name of the method in the interface, but only the interface needs to know the name of the function in the server. Don On Feb 7, 8:38 am, Aman Kumar wrote: > Hii to all > > If client want to make a function call to a