#ifndef ELEMENTREDUCTION_H #define ELEMENTREDUCTION_H #include #include "element/commontype.h" //把电阻等于0的元件都去掉 class ElementReduction { public: explicit ElementReduction(const QList& branchList); void doIt(); ~ElementReduction(); private: const QList& branchList; }; #endif // ELEMENTREDUCTION_H