1 //===- BSDArchiveReader.cpp -----------------------------------------------===//
2 //
3 //                     The MCLinker Project
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 #include "mcld/LD/BSDArchiveReader.h"
10 #include "mcld/LD/Archive.h"
11 #include "mcld/MC/Input.h"
12 
13 namespace mcld {
14 
BSDArchiveReader()15 BSDArchiveReader::BSDArchiveReader() {
16 }
17 
~BSDArchiveReader()18 BSDArchiveReader::~BSDArchiveReader() {
19 }
20 
readArchive(const LinkerConfig & pConfig,Archive & pArchive)21 bool BSDArchiveReader::readArchive(const LinkerConfig& pConfig,
22                                    Archive& pArchive) {
23   // TODO
24   return true;
25 }
26 
isMyFormat(Input & pInput,bool & pContinue) const27 bool BSDArchiveReader::isMyFormat(Input& pInput, bool& pContinue) const {
28   pContinue = true;
29   // TODO
30   return false;
31 }
32 
33 }  // namespace mcld
34