Subversion Repositories HomeAutomation

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  *
  3.  *  Copyright (C) 2010  Mattias Runge
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License along
  16.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  17.  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18.  *
  19.  */
  20.  
  21. #ifndef BROKER_MESSAGE_H
  22. #define BROKER_MESSAGE_H
  23.  
  24. #include <boost/shared_ptr.hpp>
  25.  
  26. namespace atom {
  27. namespace broker {
  28.  
  29. class Origin
  30. {
  31. };
  32.    
  33. class Message
  34. {
  35. public:
  36.     typedef boost::shared_ptr<Message> Pointer;
  37.     typedef boost::shared_ptr<void> PayloadPointer;
  38.    
  39.     typedef enum
  40.     {
  41.         CAN_MESSAGE,
  42.         JS_COMMAND
  43.     } Type;
  44.    
  45.     Message(Type type, PayloadPointer payload, Origin* origin);
  46.     virtual ~Message();
  47.    
  48.     Type GetType();
  49.     PayloadPointer GetPayload();
  50.     bool TestIfOrigin(Origin* origin);
  51.    
  52. private:
  53.     Type type_;
  54.     PayloadPointer payload_;
  55.     Origin* origin_;
  56.    
  57. };
  58.  
  59. }; // namespace broker
  60. }; // namespace atom
  61.  
  62. #endif // BROKER_MESSAGE_H
  63.