blob: c27ee019f8d19d342800b70614dc32c75d9c2304 [file] [log] [blame]
//===- MCLDOutput.cpp -----------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "mcld/MC/MCLDOutput.h"
using namespace mcld;
//==========================
// MCLDOutput
Output::Output()
: MCLDFile("") {
}
Output::Output(const sys::fs::Path& pRealPath,
Output::Type pType)
: MCLDFile("", pRealPath, pType) {
}
Output::~Output()
{
}