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; see the file COPYING. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
21 * Boston, MA 02110-1301, USA.
22 *
23 */
24
25#ifndef STRIPLINE_UI_H
26#define STRIPLINE_UI_H
27
28
29#include "transline/transline.h"
31
32class STRIPLINE_UI : public TRANSLINE
33{
34public:
36
37private:
38 void calcAnalyze() override;
39 void calcSynthesize() override;
40 void showSynthesize() override;
41 void showAnalyze() override;
42 void show_results() override;
43 void getProperties() override;
44
46};
47
48#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.