Placed db object related files in a subdirectory
This commit is contained in:
@@ -21,18 +21,18 @@
|
||||
#include "FeedbackService.impl.hpp"
|
||||
|
||||
#include "core/ILogger.hpp"
|
||||
#include "database/Artist.hpp"
|
||||
#include "database/IDb.hpp"
|
||||
#include "database/RatedArtist.hpp"
|
||||
#include "database/RatedRelease.hpp"
|
||||
#include "database/RatedTrack.hpp"
|
||||
#include "database/Release.hpp"
|
||||
#include "database/Session.hpp"
|
||||
#include "database/StarredArtist.hpp"
|
||||
#include "database/StarredRelease.hpp"
|
||||
#include "database/StarredTrack.hpp"
|
||||
#include "database/Track.hpp"
|
||||
#include "database/User.hpp"
|
||||
#include "database/objects/Artist.hpp"
|
||||
#include "database/objects/RatedArtist.hpp"
|
||||
#include "database/objects/RatedRelease.hpp"
|
||||
#include "database/objects/RatedTrack.hpp"
|
||||
#include "database/objects/Release.hpp"
|
||||
#include "database/objects/StarredArtist.hpp"
|
||||
#include "database/objects/StarredRelease.hpp"
|
||||
#include "database/objects/StarredTrack.hpp"
|
||||
#include "database/objects/Track.hpp"
|
||||
#include "database/objects/User.hpp"
|
||||
|
||||
#include "internal/InternalBackend.hpp"
|
||||
#include "listenbrainz/ListenBrainzBackend.hpp"
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
#include "database/IDb.hpp"
|
||||
#include "database/Session.hpp"
|
||||
#include "database/User.hpp"
|
||||
#include "database/objects/User.hpp"
|
||||
|
||||
namespace lms::feedback
|
||||
{
|
||||
|
||||
@@ -21,9 +21,9 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "database/StarredArtistId.hpp"
|
||||
#include "database/StarredReleaseId.hpp"
|
||||
#include "database/StarredTrackId.hpp"
|
||||
#include "database/objects/StarredArtistId.hpp"
|
||||
#include "database/objects/StarredReleaseId.hpp"
|
||||
#include "database/objects/StarredTrackId.hpp"
|
||||
|
||||
namespace lms::feedback
|
||||
{
|
||||
|
||||
@@ -21,9 +21,9 @@
|
||||
|
||||
#include "database/IDb.hpp"
|
||||
#include "database/Session.hpp"
|
||||
#include "database/StarredArtist.hpp"
|
||||
#include "database/StarredRelease.hpp"
|
||||
#include "database/StarredTrack.hpp"
|
||||
#include "database/objects/StarredArtist.hpp"
|
||||
#include "database/objects/StarredRelease.hpp"
|
||||
#include "database/objects/StarredTrack.hpp"
|
||||
|
||||
namespace lms::feedback
|
||||
{
|
||||
|
||||
@@ -31,9 +31,9 @@
|
||||
#include "core/http/IClient.hpp"
|
||||
#include "database/IDb.hpp"
|
||||
#include "database/Session.hpp"
|
||||
#include "database/StarredTrack.hpp"
|
||||
#include "database/Track.hpp"
|
||||
#include "database/User.hpp"
|
||||
#include "database/objects/StarredTrack.hpp"
|
||||
#include "database/objects/Track.hpp"
|
||||
#include "database/objects/User.hpp"
|
||||
|
||||
#include "Exception.hpp"
|
||||
#include "FeedbacksParser.hpp"
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
#include <boost/asio/io_context_strand.hpp>
|
||||
#include <boost/asio/steady_timer.hpp>
|
||||
|
||||
#include "database/StarredTrackId.hpp"
|
||||
#include "database/UserId.hpp"
|
||||
#include "database/objects/StarredTrackId.hpp"
|
||||
#include "database/objects/UserId.hpp"
|
||||
|
||||
#include "FeedbackTypes.hpp"
|
||||
|
||||
|
||||
@@ -24,9 +24,9 @@
|
||||
#include "core/http/IClient.hpp"
|
||||
#include "database/IDb.hpp"
|
||||
#include "database/Session.hpp"
|
||||
#include "database/StarredArtist.hpp"
|
||||
#include "database/StarredRelease.hpp"
|
||||
#include "database/Track.hpp"
|
||||
#include "database/objects/StarredArtist.hpp"
|
||||
#include "database/objects/StarredRelease.hpp"
|
||||
#include "database/objects/Track.hpp"
|
||||
|
||||
#include "Utils.hpp"
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include <Wt/Json/Parser.h>
|
||||
|
||||
#include "database/Session.hpp"
|
||||
#include "database/User.hpp"
|
||||
#include "database/objects/User.hpp"
|
||||
|
||||
namespace lms::feedback::listenBrainz::utils
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
#include "core/ILogger.hpp"
|
||||
#include "core/UUID.hpp"
|
||||
#include "database/UserId.hpp"
|
||||
#include "database/objects/UserId.hpp"
|
||||
|
||||
#define LOG(sev, message) LMS_LOG(FEEDBACK, sev, "[listenbrainz] " << message)
|
||||
|
||||
|
||||
@@ -25,12 +25,12 @@
|
||||
#include <Wt/WDateTime.h>
|
||||
#include <boost/asio/io_context.hpp>
|
||||
|
||||
#include "database/ArtistId.hpp"
|
||||
#include "database/Filters.hpp"
|
||||
#include "database/ReleaseId.hpp"
|
||||
#include "database/TrackId.hpp"
|
||||
#include "database/Types.hpp"
|
||||
#include "database/UserId.hpp"
|
||||
#include "database/objects/ArtistId.hpp"
|
||||
#include "database/objects/Filters.hpp"
|
||||
#include "database/objects/ReleaseId.hpp"
|
||||
#include "database/objects/TrackId.hpp"
|
||||
#include "database/objects/UserId.hpp"
|
||||
|
||||
namespace lms::db
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user