first commit
This commit is contained in:
22
objects/vp_frame_text_target.cpp
Normal file
22
objects/vp_frame_text_target.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
#include "vp_frame_text_target.h"
|
||||
|
||||
namespace vp_objects {
|
||||
|
||||
vp_frame_text_target::vp_frame_text_target(std::vector<std::pair<int, int>> region_vertexes,
|
||||
std::string text,
|
||||
float score):
|
||||
region_vertexes(region_vertexes),
|
||||
text(text),
|
||||
score(score) {
|
||||
|
||||
}
|
||||
|
||||
vp_frame_text_target::~vp_frame_text_target() {
|
||||
|
||||
}
|
||||
|
||||
std::shared_ptr<vp_frame_text_target> vp_frame_text_target::clone() {
|
||||
return std::make_shared<vp_frame_text_target>(*this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user