plaintexttest.cpp 291 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(QByteArrayLiteral("Hello, World!"));
  9. res->setContentType(QStringLiteral("text/plain"));
  10. }