aboutsummaryrefslogtreecommitdiff
path: root/include/Room.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Room.hpp')
-rw-r--r--include/Room.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Room.hpp b/include/Room.hpp
new file mode 100644
index 0000000..bcdadc0
--- /dev/null
+++ b/include/Room.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <memory>
+
+namespace dchat
+{
+ class Room;
+ class Rooms;
+
+ std::shared_ptr<Room> getCurrentRoom();
+ void setCurrentRoom(std::shared_ptr<Room> room);
+
+ std::shared_ptr<Rooms> getRooms();
+ void setRooms(std::shared_ptr<Rooms> rooms);
+} \ No newline at end of file