aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/blackbox.h
blob: 9d32670ddb01269bc74efa9d74049b35f87218dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef BLACKBOX_H
#define BLACKBOX_H

#include "libsamplemacros.h"
#include "objecttype.h"
#include "point.h"

#include <list>
#include <map>

class LIBSAMPLE_API BlackBox
{
public:
    using ObjectTypeMap = std::map<int, ObjectType*>;
    using PointMap = std::map<int, Point*>;

    LIBMINIMAL_DEFAULT_COPY_MOVE(BlackBox)
    BlackBox() noexcept = default;
    ~BlackBox();

    int keepObjectType(ObjectType *object);
    ObjectType *retrieveObjectType(int ticket);
    void disposeObjectType(int ticket);

    int keepPoint(Point *point);
    Point *retrievePoint(int ticket);
    void disposePoint(int ticket);

    std::list<ObjectType*> objects();
    std::list<Point*> points();

    inline void referenceToValuePointer(Point*&) {}
    inline void referenceToObjectPointer(ObjectType*&) {}

private:
    ObjectTypeMap m_objects;
    PointMap m_points;
    int m_ticket = -1;
};

#endif // BLACKBOX_H