plasma-framework/private/qtjolie-branch/tests/printer.ol
Kevin Ottens 82f10bbf0d Ok, let's provide a small Jolie script to go with the sodepprintertest
app.

svn path=/branches/work/~ervin/sodep/; revision=922138
2009-02-06 14:28:49 +00:00

16 lines
228 B
Plaintext

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