KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_calculator/transline/stripline.h
Go to the documentation of this file.
1/*
2 * stripline.h - stripline class definition
3 *
4 * Copyright (C) 2011 Michael Margraf <[email protected]>
5 * Modifications 2011 for Kicad: Jean-Pierre Charras
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this package. If not, see <https://www.gnu.org/licenses/>.
20 *
21 */
22
23#ifndef STRIPLINE_UI_H
24#define STRIPLINE_UI_H
25
26
27#include "transline/transline.h"
29
30class STRIPLINE_UI : public TRANSLINE
31{
32public:
34
35private:
36 void calcAnalyze() override;
37 void calcSynthesize() override;
38 void showSynthesize() override;
39 void showAnalyze() override;
40 void show_results() override;
41 void getProperties() override;
42
44};
45
46#endif //STRIPLINE_UI_H
void calcSynthesize() override
Computation for synthesis.
void getProperties() override
@function getProperties
void showSynthesize() override
Shows analysis results and checks for errors / warnings.
void show_results() override
Shows results.
void calcAnalyze() override
Computation for analysis.
void showAnalyze() override
Shows synthesis results and checks for errors / warnings.