libdrmconf  0.12.0
A library to program DMR radios.
dummyfilereader.hh
1 #ifndef DUMMYFILEREADER_HH
2 #define DUMMYFILEREADER_HH
3 
4 #include "errorstack.hh"
5 
6 class Codeplug;
7 
10 {
11 public:
13  static bool read(const QString &filename, Codeplug *codeplug, const ErrorStack &err=ErrorStack());
14 };
15 
16 #endif // DUMMYFILEREADER_HH
This class defines the interface all device-specific code-plugs must implement.
Definition: codeplug.hh:19
Just a class implementing the filereader "interface" that fails.
Definition: dummyfilereader.hh:10
static bool read(const QString &filename, Codeplug *codeplug, const ErrorStack &err=ErrorStack())
Does not read the specified file.
Definition: dummyfilereader.cc:4
Implements a stack of error messages to provide a pretty formatted error traceback.
Definition: errorstack.hh:41