source: src/CodePatterns/Observer/Channels.hpp@ 9b8fa4

Last change on this file since 9b8fa4 was 9b8fa4, checked in by Frederik Heber <heber@…>, 14 years ago

Huge update of file structure to place installation header files into right folder.

  • The problem ist that we desire use as include "CodePatterns/...". For this to work, especially with the new Observer subfolder structure, it has been necessary to place all header files away from their source files into a distinct folder called CodePatterns. This emulates the later, after make install present structure.
  • essentially all source and header files had to be changed to adapt the include.
  • all Makefile.am's had to be changed.
  • nobase_ ... was removed such that header files are installed flat and not creating their subfolder along the process.
  • We placed Observer into its own convenience library and own folder Observer away from Patterns.

Some other changes:

  • FIX: MemDebug.hpp inclusion has been removed in all stubs.
  • Property mode set to 100644
File size: 823 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 "CodePatterns/Observer/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 */
26class Channels {
27public:
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
36protected:
37 void removeChannel(size_t no);
38
39private:
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.