Skip to content

Commit

Permalink
Naprawiony projekt
Browse files Browse the repository at this point in the history
  • Loading branch information
DZacheja committed May 13, 2021
1 parent 21528f2 commit 2c99585
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 39 deletions.
6 changes: 2 additions & 4 deletions .gitignore.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<<<<<<< Updated upstream
=======

#Other files/directories
**/DANE
>>>>>>> Stashed changes
**/DANEs
# C++ objects and libs
*.slo
*.lo
Expand Down
34 changes: 13 additions & 21 deletions IonoFreeCorrection.pro
Original file line number Diff line number Diff line change
Expand Up @@ -16,37 +16,29 @@ DEFINES += QT_DEPRECATED_WARNINGS
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0

SOURCES += \
<<<<<<< Updated upstream
main.cpp \
mainwindow.cpp

HEADERS += \
=======
mainwindow.cpp \
BrdcEphemeris.cpp \
RinexOVer3.cpp \
RinexObserwacyjny.cpp \
WspSatelitow.cpp \
calculations.cpp \
crx2rnx.cpp \
main.cpp \
mainwindow.cpp
RinexNavigacyjny.cpp \
RinexObserwacyjny.cpp \
RinexOVer3.cpp

HEADERS += \
BrdcEphemeris.h \
calculations.h \
mainwindow.h \
RinexNavigacyjny.h \
RinexObserwacyjny.h \
RinexOVer3.h

INCLUDEPATH += D:\BIBLIOTEKI\armadillo-10.4.0\include

LIBS += \
-LC:\armadillo\examples\lib_win64 \
-llapack_win64_MT \
-lblas_win64_MT

HEADERS += \
BrdcEphemeris.h \
RinexNavigacyjny.h \
RinexOVer3.h \
RinexObserwacyjny.h \
calculations.h \
crx2rnx.h \
>>>>>>> Stashed changes
mainwindow.h

FORMS += \
mainwindow.ui

Expand Down
2 changes: 1 addition & 1 deletion IonoFreeCorrection.pro.user
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.14.2, 2021-05-12T23:14:17. -->
<!-- Written by QtCreator 4.14.2, 2021-05-13T18:32:17. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
Expand Down
7 changes: 7 additions & 0 deletions RinexNavigacyjny.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include "RinexNavigacyjny.h"

RinexNavigacyjny::RinexNavigacyjny()
{}
RinexNavigacyjny::~RinexNavigacyjny()
{}

10 changes: 1 addition & 9 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#include "mainwindow.h"

#include <QApplication>
<<<<<<< Updated upstream

=======
#include "BrdcEphemeris.h"
#include <QDebug>
#include <armadillo>
Expand All @@ -14,21 +10,18 @@
#include <windows.h>
#include <string>
#include <QString>
#include <crx2rnx.h>
//#include <crx2rnx.h>
#include <QStringList>
#include "RinexOVer3.h"
#include "calculations.h"
#include <QDesktopWidget>
#include <QRect>
using namespace std;
>>>>>>> Stashed changes
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
<<<<<<< Updated upstream
w.show();
=======
QRect ScreenRect = QApplication::desktop()->screenGeometry();
int height =static_cast<int>(0.9 * ScreenRect.height());
w.resize(ScreenRect.width(),height);
Expand All @@ -52,6 +45,5 @@ int main(int argc, char *argv[])
// matrix1(2,2) = 11;
// matrix1.print("M:");

>>>>>>> Stashed changes
return a.exec();
}
8 changes: 4 additions & 4 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "crx2rnx.h"
//#include "crx2rnx.h"
#include <QString>

MainWindow::MainWindow(QWidget *parent)
Expand All @@ -20,7 +20,7 @@ void MainWindow::on_TestowyGuzik_clicked()
{
QString filename = "CACE00ESP_R_20210020000_01D_30S_MO.crx";

crx2rnx *Plik;
Plik = new crx2rnx(filename);
delete Plik;
// crx2rnx *Plik;
// Plik = new crx2rnx(filename);
// delete Plik;
}

0 comments on commit 2c99585

Please sign in to comment.