| 
            Last change
 on this file since 75d156 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:
            1.7 KB
           | 
        
      
      
| Line |   | 
|---|
| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * Channels.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Dec 1, 2011
 | 
|---|
| 12 |  *      Author: heber
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include "MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "Assert.hpp"
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include "Channels.hpp"
 | 
|---|
| 25 | #include "Notification.hpp"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | 
 | 
|---|
| 28 | Channels::Channels()
 | 
|---|
| 29 | {}
 | 
|---|
| 30 | 
 | 
|---|
| 31 | Channels::~Channels()
 | 
|---|
| 32 | {
 | 
|---|
| 33 |   // free all present Notifications
 | 
|---|
| 34 |   for(NotificationTypetoRefMap::iterator iter = ChannelMap.begin();
 | 
|---|
| 35 |       !ChannelMap.empty(); iter = ChannelMap.begin()) {
 | 
|---|
| 36 |     delete iter->second;
 | 
|---|
| 37 |     ChannelMap.erase(iter);
 | 
|---|
| 38 |   }
 | 
|---|
| 39 | }
 | 
|---|
| 40 | 
 | 
|---|
| 41 | void Channels::addChannel(size_t no)
 | 
|---|
| 42 | {
 | 
|---|
| 43 |   NotificationTypetoRefMap::const_iterator iter = ChannelMap.find(no);
 | 
|---|
| 44 |   ASSERT(iter == ChannelMap.end(),
 | 
|---|
| 45 |       "Channels::addChannel() - channel "+toString(int(no))+" is already present in ChannelMap.");
 | 
|---|
| 46 |   ChannelMap.insert( std::make_pair(no, new Notification(no)) );
 | 
|---|
| 47 | }
 | 
|---|
| 48 | 
 | 
|---|
| 49 | void Channels::removeChannel(size_t no)
 | 
|---|
| 50 | {
 | 
|---|
| 51 |   NotificationTypetoRefMap::iterator iter = ChannelMap.find(no);
 | 
|---|
| 52 |   ASSERT(iter != ChannelMap.end(),
 | 
|---|
| 53 |       "Channels::removeChannel() - channel "+toString(int(no))+" not present in ChannelMap.");
 | 
|---|
| 54 |   delete iter->second;
 | 
|---|
| 55 |   ChannelMap.erase(iter);
 | 
|---|
| 56 | }
 | 
|---|
| 57 | 
 | 
|---|
| 58 | Notification_ptr Channels::getChannel(size_t no) const
 | 
|---|
| 59 | {
 | 
|---|
| 60 |   NotificationTypetoRefMap::const_iterator iter = ChannelMap.find(no);
 | 
|---|
| 61 |   ASSERT(iter != ChannelMap.end(),
 | 
|---|
| 62 |       "Channels::getChannel() - channel "+toString(int(no))+" not present in ChannelMap.");
 | 
|---|
| 63 |   return iter->second;
 | 
|---|
| 64 | }
 | 
|---|
| 65 | 
 | 
|---|
| 66 | size_t Channels::getType(Notification_ptr channel) const
 | 
|---|
| 67 | {
 | 
|---|
| 68 |   return channel->getChannelNo();
 | 
|---|
| 69 | }
 | 
|---|
| 70 | 
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.