• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/MC/MCLDInput.h>
10 #include <mcld/LD/BSDArchiveReader.h>
11 #include <mcld/LD/Archive.h>
12 
13 using namespace mcld;
14 
BSDArchiveReader()15 BSDArchiveReader::BSDArchiveReader()
16 {
17 }
18 
~BSDArchiveReader()19 BSDArchiveReader::~BSDArchiveReader()
20 {
21 }
22 
readArchive(Archive & pArchive)23 bool BSDArchiveReader::readArchive(Archive& pArchive)
24 {
25   // TODO
26   return true;
27 }
28 
isMyFormat(Input & pInput) const29 bool BSDArchiveReader::isMyFormat(Input& pInput) const
30 {
31   // TODO
32   return false;
33 }
34 
35