#ifndef CONFIG_TABLE_STC_H #define CONFIG_TABLE_STC_H #include #include class STControlEngine; class STRodCrate; class RodEditor; class ConfigTableSTC : public ConfigTable { Q_OBJECT public: ConfigTableSTC(STControlEngine &engine_in, STRodCrate *crate=0, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, Qt::WFlags fl = 0); ~ConfigTableSTC(){}; RodEditor& getRodEditor(){return *m_rodEdt;}; public slots: // void calculateLinks(int row, int col); void setRodType(); private: STControlEngine &m_engine; RodEditor *m_rodEdt; }; #endif