mirror of
https://github.com/supleed2/svd2cpp.git
synced 2024-11-10 02:25:48 +00:00
10 lines
334 B
C++
10 lines
334 B
C++
|
#include <ClassPrinter.hpp>
|
||
|
|
||
|
ClassPrinter::ClassPrinter(const cxxopts::ParseResult& results,
|
||
|
const DeviceInfo& deviceInfo,
|
||
|
const std::vector<Peripheral>& peripherals) :
|
||
|
results(results),
|
||
|
deviceInfo(deviceInfo),
|
||
|
peripherals(peripherals){
|
||
|
}
|