Rename http folder to backend to better align with the classes inside

This commit is contained in:
Cameron Gutman 2018-06-27 22:30:33 -07:00
parent 1b36071e02
commit 6fa4faa285
14 changed files with 19 additions and 20 deletions

View file

@ -56,24 +56,24 @@ SOURCES += \
streaming/input.c \
gui/mainwindow.cpp \
gui/popupmanager.cpp \
http/identitymanager.cpp \
http/nvhttp.cpp \
http/nvpairingmanager.cpp \
backend/identitymanager.cpp \
backend/nvhttp.cpp \
backend/nvpairingmanager.cpp \
streaming/video.c \
streaming/connection.cpp \
http/computermanager.cpp \
http/boxartmanager.cpp
backend/computermanager.cpp \
backend/boxartmanager.cpp
HEADERS += \
utils.h \
gui/mainwindow.h \
gui/popupmanager.h \
http/identitymanager.h \
http/nvhttp.h \
http/nvpairingmanager.h \
backend/identitymanager.h \
backend/nvhttp.h \
backend/nvpairingmanager.h \
streaming/streaming.h \
http/computermanager.h \
http/boxartmanager.h
backend/computermanager.h \
backend/boxartmanager.h
FORMS += \
gui/mainwindow.ui

View file

@ -1,7 +1,7 @@
#pragma once
#include "http/identitymanager.h"
#include "http/nvhttp.h"
#include "identitymanager.h"
#include "nvhttp.h"
#include <openssl/aes.h>
#include <openssl/x509.h>

View file

@ -1,12 +1,11 @@
#include "gui/mainwindow.h"
#include "ui_mainwindow.h"
#include "gui/popupmanager.h"
#include "http/identitymanager.h"
#include "http/nvpairingmanager.h"
#include "http/nvhttp.h"
#include "backend/identitymanager.h"
#include "backend/nvpairingmanager.h"
#include "streaming/streaming.h"
#include "http/computermanager.h"
#include "http/boxartmanager.h"
#include "backend/computermanager.h"
#include "backend/boxartmanager.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),

View file

@ -1,8 +1,8 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "http/computermanager.h"
#include "http/boxartmanager.h"
#include "backend/computermanager.h"
#include "backend/boxartmanager.h"
#include <QMainWindow>
#include <QtWidgets>

View file

@ -1,7 +1,7 @@
#include "gui/mainwindow.h"
#include <QApplication>
#include "http/nvhttp.h"
#include "backend/nvhttp.h"
// Don't let SDL hook our main function, since Qt is already
// doing the same thing