plasma-framework/private/qtjolie-branch/tests/printer.ol
Rob Scheepmaker 413f8da6b3 And port to the new api, and rename the copy.
svn path=/trunk/KDE/kdelibs/; revision=1023814
2009-09-15 11:12:45 +00:00

18 lines
244 B
Plaintext

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