blob: 9710ff5f6dda79f586764d266845197b32384640 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "reader.h"
#include <util/generic/vector.h>
#include <functional>
namespace NIPREG {
void SplitIPREG(TReader &reader, std::function<void(const TAddress& first, const TAddress& last, const TVector<TString>& data)>&& proc);
}
|