/* -*- C++ -*- This file is part of ThreadWeaver. SPDX-FileCopyrightText: 2005-2014 Mirko Boehm SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef PRIORITYDECORATOR_H #define PRIORITYDECORATOR_H #include class PriorityDecorator : public ThreadWeaver::IdDecorator { public: explicit PriorityDecorator(int priority, ThreadWeaver::JobInterface *job, bool autoDelete = true); // FIXME temp void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread *thread) override; int priority() const override; private: int m_priority; }; #endif // PRIORITYDECORATOR_H