mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
227 B
C
18 lines
227 B
C
8 years ago
|
|
||
|
|
||
|
#ifndef CFG_PARSER_H
|
||
|
#define CFG_PARSER_H
|
||
|
|
||
|
#include "enb.h"
|
||
|
|
||
|
namespace srsenb {
|
||
|
class cfg_parser
|
||
|
{
|
||
|
public:
|
||
|
void parse_sibs(all_args_t *args, rrc_cfg_t *rrc_cfg, phy_cfg_t *phy_config_common);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // CFG_PARSER_H
|