You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
616 B

  1. --- a/common/Event.h
  2. +++ b/common/Event.h
  3. @@ -9,7 +9,7 @@
  4. #ifndef _WINDOWS
  5. - #include <tr1/memory>
  6. + #include <memory>
  7. typedef void* EVENT_T;
  8. #else
  9. #include <windows.h>
  10. @@ -32,7 +32,7 @@ namespace TelldusCore {
  11. virtual bool isValid() const;
  12. };
  13. - typedef std::tr1::shared_ptr<EventData> EventDataRef;
  14. + typedef std::shared_ptr<EventData> EventDataRef;
  15. class EventBase {
  16. public:
  17. @@ -74,7 +74,7 @@ namespace TelldusCore {
  18. friend class EventHandler;
  19. };
  20. - typedef std::tr1::shared_ptr<Event> EventRef;
  21. + typedef std::shared_ptr<Event> EventRef;
  22. }
  23. #endif // TELLDUS_CORE_COMMON_EVENT_H_