--- /dev/null
+*.user
+*~
+.DS_Store
+*.pdf
+*.exe
+build-*
--- /dev/null
+#include "error.h"
+
+Error::Error()
+{
+}
--- /dev/null
+#ifndef ERROR_H
+#define ERROR_H
+
+class Error
+{
+ public:
+ Error();
+};
+
+#endif // ERROR_H
--- /dev/null
+#-------------------------------------------------
+#
+# Project created by QtCreator 2015-08-18T10:25:46
+#
+#-------------------------------------------------
+
+QT -= core gui
+
+TARGET = LivingDesktopLibrary
+TEMPLATE = lib
+
+DEFINES += LIVINGDESKTOPLIBRARY_LIBRARY
+
+SOURCES += livingdesktoplibrary.cpp
+
+HEADERS += livingdesktoplibrary.h\
+ livingdesktoplibrary_global.h
+
+unix {
+ target.path = /usr/lib
+ INSTALLS += target
+}
--- /dev/null
+#include "xyplotter.h"
+
+XYPlotter::XYPlotter()
+{
+}
--- /dev/null
+#ifndef XYPLOTTER_H
+#define XYPLOTTER_H
+
+class XYPlotter
+{
+ public:
+ XYPlotter();
+};
+
+#endif // XYPLOTTER_H
--- /dev/null
+#include "livingdesktoplibrary.h"
+
+
+LivingDesktopLibrary::LivingDesktopLibrary()
+{
+}
--- /dev/null
+#ifndef LIVINGDESKTOPLIBRARY_H
+#define LIVINGDESKTOPLIBRARY_H
+
+#include "livingdesktoplibrary_global.h"
+
+class LIVINGDESKTOPLIBRARYSHARED_EXPORT LivingDesktopLibrary
+{
+
+ public:
+ LivingDesktopLibrary();
+};
+
+#endif // LIVINGDESKTOPLIBRARY_H
--- /dev/null
+#ifndef LIVINGDESKTOPLIBRARY_GLOBAL_H
+#define LIVINGDESKTOPLIBRARY_GLOBAL_H
+
+#include <QtCore/qglobal.h>
+
+#if defined(LIVINGDESKTOPLIBRARY_LIBRARY)
+# define LIVINGDESKTOPLIBRARYSHARED_EXPORT Q_DECL_EXPORT
+#else
+# define LIVINGDESKTOPLIBRARYSHARED_EXPORT Q_DECL_IMPORT
+#endif
+
+#endif // LIVINGDESKTOPLIBRARY_GLOBAL_H
--- /dev/null
+#-------------------------------------------------
+#
+# Project created by QtCreator 2015-08-18T11:19:47
+#
+#-------------------------------------------------
+
+QT += core gui
+
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
+
+TARGET = Test
+TEMPLATE = app
+
+
+SOURCES += main.cpp\
+ mainwindow.cpp
+
+HEADERS += mainwindow.h
+
+FORMS += mainwindow.ui
--- /dev/null
+#include "mainwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+
+ return a.exec();
+}
--- /dev/null
+#include "mainwindow.h"
+#include "ui_mainwindow.h"
+
+MainWindow::MainWindow(QWidget *parent) :
+ QMainWindow(parent),
+ ui(new Ui::MainWindow)
+{
+ ui->setupUi(this);
+}
+
+MainWindow::~MainWindow()
+{
+ delete ui;
+}
--- /dev/null
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <QMainWindow>
+
+namespace Ui {
+ class MainWindow;
+}
+
+class MainWindow : public QMainWindow
+{
+ Q_OBJECT
+
+ public:
+ explicit MainWindow(QWidget *parent = 0);
+ ~MainWindow();
+
+ private:
+ Ui::MainWindow *ui;
+};
+
+#endif // MAINWINDOW_H
--- /dev/null
+<ui version="4.0">
+ <class>MainWindow</class>
+ <widget class="QMainWindow" name="MainWindow" >
+ <property name="geometry" >
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>400</width>
+ <height>300</height>
+ </rect>
+ </property>
+ <property name="windowTitle" >
+ <string>MainWindow</string>
+ </property>
+ <widget class="QMenuBar" name="menuBar" />
+ <widget class="QToolBar" name="mainToolBar" />
+ <widget class="QWidget" name="centralWidget" />
+ <widget class="QStatusBar" name="statusBar" />
+ </widget>
+ <layoutDefault spacing="6" margin="11" />
+ <pixmapfunction></pixmapfunction>
+ <resources/>
+ <connections/>
+</ui>