1*c16361c4SAxel Dörfler /* 2*c16361c4SAxel Dörfler * Copyright 2015, Axel Dörfler, axeld@pinc-software.de. 3*c16361c4SAxel Dörfler * Distributed under the terms of the MIT License. 4*c16361c4SAxel Dörfler */ 5*c16361c4SAxel Dörfler #ifndef INIT_TEMPORARY_DIRECTORY_JOB_H 6*c16361c4SAxel Dörfler #define INIT_TEMPORARY_DIRECTORY_JOB_H 7*c16361c4SAxel Dörfler 8*c16361c4SAxel Dörfler 9*c16361c4SAxel Dörfler #include "AbstractEmptyDirectoryJob.h" 10*c16361c4SAxel Dörfler 11*c16361c4SAxel Dörfler 12*c16361c4SAxel Dörfler class InitTemporaryDirectoryJob : public AbstractEmptyDirectoryJob { 13*c16361c4SAxel Dörfler public: 14*c16361c4SAxel Dörfler InitTemporaryDirectoryJob(); 15*c16361c4SAxel Dörfler 16*c16361c4SAxel Dörfler protected: 17*c16361c4SAxel Dörfler virtual status_t Execute(); 18*c16361c4SAxel Dörfler }; 19*c16361c4SAxel Dörfler 20*c16361c4SAxel Dörfler 21*c16361c4SAxel Dörfler #endif // INIT_TEMPORARY_DIRECTORY_JOB_H 22