The class of work with contacts is added.

This commit is contained in:
Denis Davydov 2018-05-10 19:01:11 +03:00
parent 5987f42996
commit 1a21f566f8
3 changed files with 21 additions and 2 deletions

View File

@ -16,7 +16,9 @@ DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
main.cpp \
network.cpp
network.cpp \
contactmanager.cpp
HEADERS += \
network.h
network.h \
contactmanager.h

6
src/contactmanager.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "contactmanager.h"
ContactManager::ContactManager()
{
}

11
src/contactmanager.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef CONTACTMANAGER_H
#define CONTACTMANAGER_H
class ContactManager
{
public:
ContactManager();
};
#endif // CONTACTMANAGER_H