16 lines
205 B
C++
16 lines
205 B
C++
#ifndef IHASMAC_H
|
|
#define IHASMAC_H
|
|
|
|
#include <string>
|
|
|
|
class IHasMAC {
|
|
public:
|
|
|
|
virtual void setMAC(const std::string& mac) = 0;
|
|
|
|
virtual const std::string& getMAC() const = 0;
|
|
|
|
};
|
|
|
|
#endif // IHASMAC_H
|