26 lines
552 B
C++
26 lines
552 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#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
|