llvm-6502/tools/llvmc2/Action.h
2008-05-06 18:08:59 +00:00

39 lines
923 B
C++

//===--- Tools.h - The LLVM Compiler Driver ---------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open
// Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Action - encapsulates a single shell command.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TOOLS_LLVMC2_ACTION_H
#define LLVM_TOOLS_LLVMC2_ACTION_H
#include <string>
#include <vector>
namespace llvmc {
typedef std::vector<std::string> StringVector;
class Action {
std::string Command_;
std::vector<std::string> Args_;
public:
Action (const std::string& C,
const StringVector& A)
: Command_(C), Args_(A)
{}
int Execute() const;
};
}
#endif // LLVM_TOOLS_LLVMC2_ACTION_H