#ifndef IHASMAC_H #define IHASMAC_H #include class IHasMAC { public: virtual void setMAC(const std::string& mac) = 0; virtual const std::string& getMAC() const = 0; }; #endif // IHASMAC_H