Job.cpp revision d57ac5990d22592665a67a28fc5d39f1155424d3
1//===--- Job.cpp - Command to Execute -----------------------------------*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "clang/Driver/Job.h"
11
12#include <cassert>
13using namespace clang::driver;
14
15Job::~Job() {}
16
17Command::Command(const char *_Executable, const ArgStringList &_Arguments)
18  : Job(CommandClass), Executable(_Executable), Arguments(_Arguments) {
19}
20
21PipedJob::PipedJob() : Job(PipedJobClass) {}
22
23JobList::JobList() : Job(JobListClass) {}
24