aboutsummaryrefslogtreecommitdiff
path: root/src/configactionhandler.cpp
blob: 4deea5953f337d28b3c55b842dd41b18c0c7f840 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "configactionhandler.h"

#include "utils.h"

namespace newsboat {

void ConfigActionHandler::handle_action(const std::string& action,
	const std::string& params)
{
	const std::vector<std::string> tokens = utils::tokenize_quoted(params);
	handle_action(action, tokens);
}

void ConfigActionHandler::handle_action(const std::string&,
	const std::vector<std::string>&)
{
}

} // namespace newsboat