Changeset 11054 for code/branches/cpp11_v3/src/orxonox/chat/ChatManager.h
- Timestamp:
- Jan 10, 2016, 1:54:11 PM (9 years ago)
- Location:
- code/branches/cpp11_v3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3
- Property svn:mergeinfo changed
-
code/branches/cpp11_v3/src/orxonox/chat/ChatManager.h
r8858 r11054 47 47 public: 48 48 ChatManager(); 49 virtual ~ChatManager() {}49 virtual ~ChatManager() = default; 50 50 51 51 static void message(const std::string& message, unsigned int targetID = NETWORK_PEER_ID_BROADCAST); … … 53 53 54 54 protected: 55 ChatManager(const ChatManager&); 55 // non-copyable: 56 ChatManager(const ChatManager&) = delete; 57 ChatManager& operator=(const ChatManager&) = delete; 56 58 57 virtual void incomingChat(const std::string& message, unsigned int sourceID) ;59 virtual void incomingChat(const std::string& message, unsigned int sourceID) override; 58 60 59 61 static ChatManager* singletonPtr_s;
Note: See TracChangeset
for help on using the changeset viewer.