Skip to content

Commit

Permalink
UP-10 Resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
tatyanakrivonogova committed May 4, 2024
1 parent 1d009b2 commit 583e8ed
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 91 deletions.
3 changes: 0 additions & 3 deletions include/document.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@ class Document {
public:
explicit Document();

<<<<<<< HEAD
void Insert(Glyph::GlyphPtr glyph);
void Remove(Glyph::GlyphPtr glyph);

=======
>>>>>>> c0e893651f2a7b6a023ecf456ff92d9c884a02b3
void SetCurrentPage(Page::PagePtr page);
Page::PagePtr GetCurrentPage();

Expand Down
3 changes: 0 additions & 3 deletions src/document.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Document::Document() {
visiblePages.push_back(currentPage);
}

<<<<<<< HEAD
void Document::Insert(Glyph::GlyphPtr glyph) {
// currentPage.Insert(glyph);
// TO DO
Expand All @@ -21,8 +20,6 @@ void Document::Remove(Glyph::GlyphPtr glyph) {
// TO DO
}

=======
>>>>>>> c0e893651f2a7b6a023ecf456ff92d9c884a02b3
void Document::SetCurrentPage(Page::PagePtr page) {
currentPage = std::move(page);
}
Expand Down
56 changes: 0 additions & 56 deletions src/glyphs/composition.cpp

This file was deleted.

4 changes: 0 additions & 4 deletions src/glyphs/glyph.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#include "glyphs/utils/point.h"
#include "glyphs/glyph.h"
<<<<<<< HEAD
=======
#include "glyphs/glyph.h"
>>>>>>> c0e893651f2a7b6a023ecf456ff92d9c884a02b3

Glyph::Glyph(const int _x, const int _y, const int _width, const int _height) :
x(_x), y(_y), width(_width), height(_height) {}
Expand Down
25 changes: 0 additions & 25 deletions src/gui_signature.cpp

This file was deleted.

0 comments on commit 583e8ed

Please sign in to comment.