mumsi/MumbleChannelJoiner.hpp

33 lines
780 B
C++
Raw Normal View History

2015-11-30 23:42:37 +01:00
#pragma once
#include <boost/noncopyable.hpp>
#include <log4cpp/Category.hh>
#include <vector>
2015-11-30 23:42:37 +01:00
#include <string>
#include <boost/regex.hpp>
#include "MumbleCommunicator.hpp"
namespace mumble {
class MumbleChannelJoiner : boost::noncopyable {
struct ChannelEntry {
int id;
std::string name;
};
2015-11-30 23:42:37 +01:00
public:
MumbleChannelJoiner(std::string channelNameRegex);
void checkChannel(std::string channel_name, int channel_id);
void maybeJoinChannel(mumble::MumbleCommunicator *mc);
void findJoinChannel(mumble::MumbleCommunicator *mc);
2015-11-30 23:42:37 +01:00
private:
log4cpp::Category &logger;
boost::regex channelNameRegex;
int channel_id;
static std::vector<ChannelEntry> channels;
2015-11-30 23:42:37 +01:00
};
}