You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
385 B
21 lines
385 B
#ifndef _IMPLEMENTATION_H_
|
|
#define _IMPLEMENTATION_H_
|
|
|
|
#include "interface.hpp"
|
|
#include <iostream>
|
|
#include <unistd.h>
|
|
|
|
struct Device::deviceImpl
|
|
{
|
|
deviceImpl()
|
|
{
|
|
std::cout << "Device implementation Constarctor For Liunx "<< std::endl;
|
|
}
|
|
void printNumber(const uint8_t& no)
|
|
{
|
|
std::cout << "selected no: "<< unsigned(no*2) << std::endl;
|
|
}
|
|
};
|
|
|
|
#endif // _IMPLEMENTATION_H_
|