~hmatuschek/+junk/qdmr-package

« back to all changes in this revision

Viewing changes to lib/codeplug.hh

  • Committer: Hannes Matuschek
  • Date: 2020-07-07 14:34:22 UTC
  • mto: (17.1.1 qdmr-package)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: hmatuschek@gmail.com-20200707143422-1djcxrjkem3k5kb1
Tags: upstream-0.3.0
ImportĀ upstreamĀ versionĀ 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#include <QObject>
5
5
#include "dfufile.hh"
 
6
#include "userdatabase.hh"
6
7
 
7
8
class Config;
8
9
 
31
32
        virtual bool decode(Config *config) = 0;
32
33
  /** Encodes a given abstract configuration (@c config) to the device specific binary code-plug.
33
34
   * This must be implemented by the device-specific codeplug. */
34
 
        virtual bool encode(Config *config) = 0;
 
35
  virtual bool encode(Config *config) = 0;
35
36
};
36
37
 
37
38
#endif // CODEPLUG_HH