some more thinking about delay manager

This commit is contained in:
Blue 2023-03-07 21:45:01 +03:00
parent 99fd001292
commit 9fff409630
Signed by: blue
GPG key ID: 9B203B252A63EE38
17 changed files with 320 additions and 96 deletions

View file

@ -14,22 +14,24 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef CORE_OWNCARDINTERNAL_H
#define CORE_OWNCARDINTERNAL_H
#ifndef CORE_DELAYMANAGER_OWNCARDINTERNAL_H
#define CORE_DELAYMANAGER_OWNCARDINTERNAL_H
#include "job.h"
namespace Core {
namespace DelayManager {
class OwnCardInternal : public Job {
protected:
OwnCardInternal(Job::Id id, Job::Type type);
OwnCardInternal(Id id, Type type);
public:
OwnCardInternal(Job::Id id);
OwnCardInternal(Id id);
OwnCardInternal(const OwnCardInternal& other);
};
}
}
#endif // CORE_OWNCARDINTERNAL_H
#endif // CORE_DELAYMANAGER_OWNCARDINTERNAL_H