mirror of
https://github.com/eclipse/upm.git
synced 2025-03-27 10:49:59 +03:00

Signed-off-by: Mihai Stefanescu <mihai.stefanescu@rinftech.com> Signed-off-by: Stefan Andritoiu <stefan.andritoiu@gmail.com>
19 lines
360 B
C++
19 lines
360 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include <stdexcept>
|
|
|
|
#include "initioSampleModule.hpp"
|
|
|
|
using namespace upm;
|
|
using namespace std;
|
|
|
|
initioSampleModule::initioSampleModule(std::string initStr) : mraa::MraaIo(initStr)
|
|
{
|
|
// Do some processing here
|
|
//std::cout << "111 " << leftoverStr << std::endl;
|
|
}
|
|
|
|
initioSampleModule::~initioSampleModule()
|
|
{
|
|
}
|