Hi,
Could anybody help me,whether we have interface and abstract class concepts available in Python.
If so,could you please provide me a sample piece of code for client and server side
Interface{
Method1()=0;
........
}
Class X(Interfaace){
Method1()
{
}
}
How to invoke this interfaces using Client and server interaction.
Currently Iam developing the application using Python.
Python GUI(client)->application(cl ient).In future,I have to expose only interfaces ,so that I can use this interfaces to query the implementation locatedvin server side
The above example solution will really helps me.I will really appreciate if anybody help me in suggesting the solution.
Thanks in advance
PSB
Thanks in advance
PSB
Could anybody help me,whether we have interface and abstract class concepts available in Python.
If so,could you please provide me a sample piece of code for client and server side
Interface{
Method1()=0;
........
}
Class X(Interfaace){
Method1()
{
}
}
How to invoke this interfaces using Client and server interaction.
Currently Iam developing the application using Python.
Python GUI(client)->application(cl ient).In future,I have to expose only interfaces ,so that I can use this interfaces to query the implementation locatedvin server side
The above example solution will really helps me.I will really appreciate if anybody help me in suggesting the solution.
Thanks in advance
PSB
Thanks in advance
PSB
Comment