37 lines
921 B
C++
37 lines
921 B
C++
//===- ObjectWriter.h -----------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef MCLD_LD_OBJECTWRITER_H_
|
|
#define MCLD_LD_OBJECTWRITER_H_
|
|
#include <system_error>
|
|
|
|
namespace mcld {
|
|
|
|
class FileOutputBuffer;
|
|
class Module;
|
|
|
|
/** \class ObjectWriter
|
|
* \brief ObjectWriter provides a common interface for object file writers.
|
|
*/
|
|
class ObjectWriter {
|
|
protected:
|
|
ObjectWriter();
|
|
|
|
public:
|
|
virtual ~ObjectWriter();
|
|
|
|
virtual std::error_code writeObject(Module& pModule,
|
|
FileOutputBuffer& pOutput) = 0;
|
|
|
|
virtual size_t getOutputSize(const Module& pModule) const = 0;
|
|
};
|
|
|
|
} // namespace mcld
|
|
|
|
#endif // MCLD_LD_OBJECTWRITER_H_
|