29 lines
433 B
C++
29 lines
433 B
C++
/*
|
|
* File: SubscriptionMap.h
|
|
* Author: noackrob
|
|
*
|
|
* Created on August 26, 2013, 3:28 PM
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef SUBSCRIPTIONMAP_H
|
|
#define SUBSCRIPTIONMAP_H
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
namespace ubeeme {
|
|
namespace moversight {
|
|
|
|
class SubscriberSet;
|
|
|
|
class SubscriptionMap : public std::map<std::string, SubscriberSet> {
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* SUBSCRIPTIONMAP_H */
|
|
|