Actions
Task #1261
closedBase class for Channel
Start date:
03/03/2014
Due date:
% Done:
100%
Estimated time:
2.00 h
Description
The base class for channel should provide common API to print out information about the channel.
Interface should be at least as follows, with more method added when necessary (may be also getDescription()).
class Channel : noncopyable
{
public:
virtual
~Channel();
virtual std::string
getUri() =0;
};
Actions