File: Stringify.hpp

package info (click to toggle)
qnodeeditor 2.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,144 kB
  • sloc: cpp: 8,823; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 517 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#include <QtCore/QPoint>
#include <QtCore/QPointF>
#include <QtTest>
#include <catch2/catch.hpp>
namespace Catch
{
    template<>
    struct StringMaker<QPointF>
    {
        static std::string convert(QPointF const &p)
        {
            return std::string(QTest::toString(p));
        }
    };
    template<>
    struct StringMaker<QPoint>
    {
        static std::string convert(QPoint const &p)
        {
            return std::string(QTest::toString(p));
        }
    };
} // namespace Catch