-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Reddy
committed
Jun 10, 2022
1 parent
5639328
commit 2b4003b
Showing
4 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
Submodule OpenWeatherMap-API
updated
from deafce to 63968d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include "commandline.h" | ||
|
||
CommandLine::CommandLine(QObject *parent) | ||
: QObject{parent} | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef COMMANDLINE_H | ||
#define COMMANDLINE_H | ||
|
||
#include <QObject> | ||
#include <QDebug> | ||
|
||
|
||
class CommandLine : public QObject | ||
{ | ||
Q_OBJECT | ||
public: | ||
explicit CommandLine(QObject *parent = nullptr); | ||
|
||
signals: | ||
|
||
}; | ||
|
||
#endif // COMMANDLINE_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters