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