/* * Copyright 2013, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. * * Authors: * Ingo Weinhold */ #ifndef JOB_H #define JOB_H #include #include class Job : public BReferenceable, public DoublyLinkedListLinkImpl { public: Job(); virtual ~Job(); virtual void Do() = 0; }; #endif // JOB_H