plasma-framework/private/qtjolie-branch/tests/printer.ol
Kevin Ottens c232abcc72 Provide a PrinterService which actually send a reply.
svn path=/branches/work/~ervin/sodep/; revision=922828
2009-02-07 16:27:59 +00:00

18 lines
263 B
Plaintext

include "console.iol"
inputPort PrinterService {
Location: "socket://localhost:10000"
Protocol: sodep
RequestResponse:
printInput
}
main
{
printInput(input)(result) {
println@Console(input)();
result = "success"
}
}