File: dummyfilereader.cc

package info (click to toggle)
qdmr 0.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,420 kB
  • sloc: cpp: 95,929; xml: 10,749; python: 1,108; makefile: 78; sh: 9
file content (8 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#include "dummyfilereader.hh"

bool
DummyFileReader::read(const QString &filename, Codeplug *codeplug, const ErrorStack &err) {
  Q_UNUSED(codeplug); Q_UNUSED(filename);
  errMsg(err) << "Cannot read manufacturer codeplug file: not implemented yet.";
  return false;
}