| Last change
 on this file since d85532 was             e2e035e, checked in by Frederik Heber <heber@…>, 14 years ago | 
        
          | 
Refactored all Observer stuff into own subfolder and split up into distinct modules.
 Observer/all.hpp is all that's needed.
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            801 bytes | 
      
      
| Line |  | 
|---|
| 1 | /* | 
|---|
| 2 | * Channels.hpp | 
|---|
| 3 | * | 
|---|
| 4 | *  Created on: Dec 1, 2011 | 
|---|
| 5 | *      Author: heber | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 | #ifndef CHANNELS_HPP_ | 
|---|
| 9 | #define CHANNELS_HPP_ | 
|---|
| 10 |  | 
|---|
| 11 | // include config.h | 
|---|
| 12 | #ifdef HAVE_CONFIG_H | 
|---|
| 13 | #include <config.h> | 
|---|
| 14 | #endif | 
|---|
| 15 |  | 
|---|
| 16 | #include <map> | 
|---|
| 17 |  | 
|---|
| 18 | #include "defs.hpp" | 
|---|
| 19 |  | 
|---|
| 20 | /** Channels aggregate all possible Notifications of an Observable. | 
|---|
| 21 | * | 
|---|
| 22 | * Usually, one implements an enumeration of the channel number which is | 
|---|
| 23 | * visible to the outside only. | 
|---|
| 24 | * | 
|---|
| 25 | */ | 
|---|
| 26 | class Channels { | 
|---|
| 27 | public: | 
|---|
| 28 | Channels(); | 
|---|
| 29 | virtual ~Channels(); | 
|---|
| 30 |  | 
|---|
| 31 | void addChannel(size_t no); | 
|---|
| 32 |  | 
|---|
| 33 | Notification_ptr getChannel(size_t no) const; | 
|---|
| 34 | size_t getType(Notification_ptr channel) const; | 
|---|
| 35 |  | 
|---|
| 36 | protected: | 
|---|
| 37 | void removeChannel(size_t no); | 
|---|
| 38 |  | 
|---|
| 39 | private: | 
|---|
| 40 | typedef std::map< size_t, Notification_ptr> NotificationTypetoRefMap; | 
|---|
| 41 |  | 
|---|
| 42 | NotificationTypetoRefMap ChannelMap; | 
|---|
| 43 | }; | 
|---|
| 44 |  | 
|---|
| 45 | #endif /* CHANNELS_HPP_ */ | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.