Skip to content

Commit 7d337ca

Browse files
committed
Initial commit
0 parents  commit 7d337ca

File tree

4 files changed

+71
-0
lines changed

4 files changed

+71
-0
lines changed

.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# C++ objects and libs
2+
3+
*.slo
4+
*.lo
5+
*.o
6+
*.a
7+
*.la
8+
*.lai
9+
*.so
10+
*.dll
11+
*.dylib
12+
13+
# Qt-es
14+
15+
/.qmake.cache
16+
/.qmake.stash
17+
*.pro.user
18+
*.pro.user.*
19+
*.qbs.user
20+
*.qbs.user.*
21+
*.moc
22+
moc_*.cpp
23+
qrc_*.cpp
24+
ui_*.h
25+
Makefile*
26+
*-build-*
27+
28+
# QtCreator
29+
30+
*.autosave
31+
32+
#QtCtreator Qml
33+
*.qmlproject.user
34+
*.qmlproject.user.*

libtraqt.pro

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
TARGET = traqt
2+
TEMPLATE = lib
3+
CONFIG += staticlib
4+
5+
HEADERS += \
6+
traktrequest.h
7+
8+
SOURCES += \
9+
traktrequest.cpp
10+
11+
12+

traktrequest.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include "traktrequest.h"
2+
3+
TraktRequest::TraktRequest(QObject *parent) :
4+
QObject(parent)
5+
{
6+
}

traktrequest.h

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#ifndef TRAKTREQUEST_H
2+
#define TRAKTREQUEST_H
3+
4+
#include <QObject>
5+
6+
class TraktRequest : public QObject
7+
{
8+
Q_OBJECT
9+
public:
10+
explicit TraktRequest(QObject *parent = 0);
11+
12+
QString test;
13+
signals:
14+
15+
public slots:
16+
17+
};
18+
19+
#endif // TRAKTREQUEST_H

0 commit comments

Comments
 (0)