projects
/
iot2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Adding class LabRoom for IoTRelation testing with C++ IoTSlave
[iot2.git]
/
benchmarks
/
virtuals
/
Room.hpp
1
#ifndef _ROOM_HPP__
2
#define _ROOM_HPP__
3
#include <iostream>
4
5
using namespace std;
6
7
class Room
8
{
9
public:
10
virtual int getRoomID() = 0;
11
};
12
#endif