blob: 3cc8b2917854c69e342db1982c97e4332cbbe2e7 [file] [log] [blame]
Daniel Dunbar789e2202009-03-13 23:36:33 +00001//===--- 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 &_Argv)
18 : Job(CommandClass), Executable(_Executable), Argv(_Argv) {
19}
20
21PipedJob::PipedJob() : Job(PipedJobClass) {}
22
23JobList::JobList() : Job(JobListClass) {}