wanpipe/util/wancfg/menu_chdlc_advanced_cfg.h

46 lines
1.5 KiB
C++

/***************************************************************************
menu_chdlc_interface_cfg.h - description
-------------------
begin : Mon Apr 5 2004
copyright : (C) 2004 by David Rokhvarg
email : davidr@sangoma.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef MENU_CHDLC_ADVANCED_CFG_H
#define MENU_CHDLC_ADVANCED_CFG_H
#include "menu_base.h"
#include "conf_file_reader.h"
/**
*@author David Rokhvarg
*/
class menu_chdlc_advanced_cfg : public menu_base {
char lxdialog_path[MAX_PATH_LENGTH];
list_element_chan_def* parent_element_logical_ch;
char* name_of_parent_layer;
public:
menu_chdlc_advanced_cfg(IN char * lxdialog_path,
IN list_element_chan_def* parent_element_logical_ch);
~menu_chdlc_advanced_cfg();
int run(OUT int * selection_index);
};
#endif