Make UEFI boot-platform build again
[haiku.git] / src / servers / package / Job.h
bloba7e91c76ae5a624c805839d42ea537b2a0bc0c8c
1 /*
2 * Copyright 2013, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Ingo Weinhold <ingo_weinhold@gmx.de>
7 */
8 #ifndef JOB_H
9 #define JOB_H
12 #include <Referenceable.h>
13 #include <util/DoublyLinkedList.h>
16 class Job : public BReferenceable, public DoublyLinkedListLinkImpl<Job> {
17 public:
18 Job();
19 virtual ~Job();
21 virtual void Do() = 0;
25 #endif // JOB_H