[go: up one dir, main page]

Menu

[96b3e1]: / job.cpp  Maximize  Restore  History

Download this file

16 lines (12 with data), 425 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
/////////////////////////////////////////////////////////////////////////////////
// Author: Steven Lamerton
// Copyright: Copyright (C) 2009 Steven Lamerton
// License: GNU GPL 2 (See readme for more info)
/////////////////////////////////////////////////////////////////////////////////
#include "job.h"
Job::Job(JobData *Data) : m_Data(Data), wxThread(wxTHREAD_JOINABLE){
;
}
Job::~Job(){
delete m_Data;
}