00001 /*MT* 00002 */ 00003 00004 #ifdef HAVE_CONFIG_H 00005 #include "autoconfig.h" 00006 #endif 00007 00008 #include "generic_task.h" 00009 00010 GenericTask::GenericTask(task_owner_t taskOwner) : Object() 00011 { 00012 valid = true; 00013 cancellable = true; 00014 taskType = Invalid; 00015 taskID = 0; 00016 parentTaskID = 0; 00017 this->taskOwner = taskOwner; 00018 } 00019
1.6.1