From 1a21f566f8072efd060537f332e123cb910b2dd4 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Thu, 10 May 2018 19:01:11 +0300 Subject: [PATCH] The class of work with contacts is added. --- src/HyperboriaIM.pro | 6 ++++-- src/contactmanager.cpp | 6 ++++++ src/contactmanager.h | 11 +++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 src/contactmanager.cpp create mode 100644 src/contactmanager.h diff --git a/src/HyperboriaIM.pro b/src/HyperboriaIM.pro index 6b8aede..aa2b22c 100644 --- a/src/HyperboriaIM.pro +++ b/src/HyperboriaIM.pro @@ -16,7 +16,9 @@ DEFINES += QT_DEPRECATED_WARNINGS SOURCES += \ main.cpp \ - network.cpp + network.cpp \ + contactmanager.cpp HEADERS += \ - network.h + network.h \ + contactmanager.h diff --git a/src/contactmanager.cpp b/src/contactmanager.cpp new file mode 100644 index 0000000..e775d23 --- /dev/null +++ b/src/contactmanager.cpp @@ -0,0 +1,6 @@ +#include "contactmanager.h" + +ContactManager::ContactManager() +{ + +} diff --git a/src/contactmanager.h b/src/contactmanager.h new file mode 100644 index 0000000..6b7d3c8 --- /dev/null +++ b/src/contactmanager.h @@ -0,0 +1,11 @@ +#ifndef CONTACTMANAGER_H +#define CONTACTMANAGER_H + + +class ContactManager +{ +public: + ContactManager(); +}; + +#endif // CONTACTMANAGER_H \ No newline at end of file