This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IndoorMap/mapview/model/IHasMAC.h
2016-05-24 16:55:19 +02:00

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