plaintexttest.cpp 264 B

12345678910111213
  1. #include "plaintexttest.h"
  2. PlaintextTest::PlaintextTest(QObject *parent) : Controller(parent)
  3. {
  4. }
  5. void PlaintextTest::plaintext(Context *c)
  6. {
  7. Response *res = c->response();
  8. res->setBody("Hello, World!"_qba);
  9. res->setContentType("text/plain"_qba);
  10. }