Saving changes. Updated oatpp version has some breaking changes
This commit is contained in:
@@ -9,18 +9,23 @@
|
||||
namespace dto { namespace conversion {
|
||||
class DtoConversions {
|
||||
public:
|
||||
static dto::LoginResultDto::ObjectWrapper toLoginResultDto(const model::User&, const model::Token&);
|
||||
// static dto::LoginResultDto::ObjectWrapper toLoginResultDto(const model::User&, const model::Token&);
|
||||
static dto::LoginResultDto toLoginResultDto(const model::User&, const model::Token&);
|
||||
|
||||
static dto::RegisterResultDto::ObjectWrapper toRegisterResultDto(
|
||||
// static dto::RegisterResultDto::ObjectWrapper toRegisterResultDto(
|
||||
static dto::RegisterResultDto toRegisterResultDto(
|
||||
const model::RegisterResult&);
|
||||
|
||||
static dto::AlbumDto::ObjectWrapper toAlbumDto(const model::Album&);
|
||||
// static dto::AlbumDto::ObjectWrapper toAlbumDto(const model::Album&);
|
||||
static dto::AlbumDto toAlbumDto(const model::Album&);
|
||||
|
||||
static dto::SongDto::ObjectWrapper toSongDto(const model::Song&);
|
||||
static dto::SongDto toSongDto(const model::Song&);
|
||||
|
||||
static model::Song toSong(dto::SongDto::ObjectWrapper&);
|
||||
// static model::Song toSong(dto::SongDto::ObjectWrapper&);
|
||||
static model::Song toSong(dto::SongDto*);
|
||||
|
||||
static model::User toUser(dto::UserDto::ObjectWrapper&);
|
||||
// static model::User toUser(dto::UserDto::ObjectWrapper&);
|
||||
static model::User toUser(dto::UserDto&);
|
||||
};
|
||||
}}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user