22 lines
517 B
C++
22 lines
517 B
C++
|
//===- ObjectWriter.cpp ---------------------------------------------------===//
|
||
|
//
|
||
|
// The MCLinker Project
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
#include "mcld/LD/ObjectWriter.h"
|
||
|
|
||
|
namespace mcld {
|
||
|
|
||
|
//==========================
|
||
|
// ObjectWriter
|
||
|
ObjectWriter::ObjectWriter() {
|
||
|
}
|
||
|
|
||
|
ObjectWriter::~ObjectWriter() {
|
||
|
}
|
||
|
|
||
|
} // namespace mcld
|