Переименовываем файлы в нижний регистр
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
|
||||
#include <database/databasemanager.h>
|
||||
|
||||
#include <services/AuthorService.h>
|
||||
#include <services/BookService.h>
|
||||
#include <services/author_service.h>
|
||||
#include <services/book_service.h>
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// #define BUILD_REPOSITORIES
|
||||
#include "AuthorRepository.h"
|
||||
#include "author_repository.h"
|
||||
|
||||
#include <sql_builder/insert.h>
|
||||
#include <sql_builder/select.h>
|
||||
@@ -1,5 +1,5 @@
|
||||
// #define BUILD_REPOSITORIES
|
||||
#include "BookRepository.h"
|
||||
#include "book_repository.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <qsqlerror.h>
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "restapiserver.h"
|
||||
|
||||
#include <services/AuthorService.h>
|
||||
#include <services/BookService.h>
|
||||
#include <services/author_service.h>
|
||||
#include <services/book_service.h>
|
||||
|
||||
#include <QJsonArray>
|
||||
#include <QJsonDocument>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// #define BUILD_SERVICES
|
||||
#include "AuthorService.h"
|
||||
#include "author_service.h"
|
||||
|
||||
QVector<model::Author> AuthorService::fetchAll()
|
||||
{
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
#include <model/author.h>
|
||||
|
||||
#include <repositories/AuthorRepository.h>
|
||||
#include <repositories/author_repository.h>
|
||||
|
||||
#include <QVector>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// #define BUILD_SERVICES
|
||||
#include "BookService.h"
|
||||
#include "AuthorService.h"
|
||||
#include "book_service.h"
|
||||
#include "author_service.h"
|
||||
|
||||
QVector<model::Book> BookService::fetchAll()
|
||||
{
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
#include <model/book.h>
|
||||
|
||||
#include <repositories/BookRepository.h>
|
||||
#include <repositories/book_repository.h>
|
||||
|
||||
#include <QVector>
|
||||
|
||||
Reference in New Issue
Block a user