initial commit
This commit is contained in:
15
mapview/model/IHasMAC.h
Normal file
15
mapview/model/IHasMAC.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user