KiCad PCB EDA Suite
Loading...
Searching...
No Matches
twistedpair.h
Go to the documentation of this file.
1/*
2 * twistedpair.h - twisted pair class definition
3 *
4 * Copyright (C) 2011 Michael Margraf <[email protected]>
5 * Modified for Kicad: 2015 jean-pierre.charras
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this package; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 */
22
23
24#ifndef __TWISTEDPAIR_H
25#define __TWISTEDPAIR_H
26
27#include "transline/transline.h"
28
29class TWISTEDPAIR : public TRANSLINE
30{
31public:
33
34private:
35 void calcAnalyze() override;
36 void calcSynthesize() override;
37 void showAnalyze() override;
38 void showSynthesize() override;
39 void show_results() override;
40};
41
42#endif
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
void show_results() override
Shows results.
void calcSynthesize() override
Computation for synthesis.
void calcAnalyze() override
Definition: twistedpair.cpp:68