File tree Expand file tree Collapse file tree 5 files changed +20
-11
lines changed
Expand file tree Collapse file tree 5 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 77
88CameraPlugin::CameraPlugin () {}
99
10- std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet>
11- CameraPlugin::create ( std::string path) {
10+ std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> CameraPlugin::create (
11+ std::string path) {
1212 return std::make_shared<AnnotatorLib::ImageSet::Camera>(path);
1313}
1414
Original file line number Diff line number Diff line change @@ -10,9 +10,12 @@ class CameraPlugin : public AnnotatorLib::ImageSet::ImageSetPlugin {
1010 CameraPlugin ();
1111
1212 virtual const std::string name () override { return " camera" ; }
13- virtual const std::string description () override { return " Camera Image Set" ; }
13+ virtual const std::string description () override {
14+ return " Camera Image Set" ;
15+ }
1416
15- virtual std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> create (std::string path) override ;
17+ virtual std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> create (
18+ std::string path) override ;
1619};
1720
1821#endif // CAMERAPLUGIN_H
Original file line number Diff line number Diff line change @@ -9,10 +9,13 @@ class ImageFTPPlugin : public AnnotatorLib::ImageSet::ImageSetPlugin {
99 public:
1010 ImageFTPPlugin ();
1111
12- virtual const std::string name () override { return " imageftp" ; }
13- virtual const std::string description () override { return " Image FTP Image Set" ; }
12+ virtual const std::string name () override { return " imageftp" ; }
13+ virtual const std::string description () override {
14+ return " Image FTP Image Set" ;
15+ }
1416
15- virtual std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> create (std::string path) override ;
17+ virtual std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> create (
18+ std::string path) override ;
1619};
1720
1821#endif // IMAGEFTPPLUGIN_H
Original file line number Diff line number Diff line change 77
88VideoPlugin::VideoPlugin () {}
99
10- std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet>
11- VideoPlugin::create ( std::string path) {
10+ std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> VideoPlugin::create (
11+ std::string path) {
1212 return std::make_shared<AnnotatorLib::ImageSet::Video>(path);
1313}
1414
Original file line number Diff line number Diff line change @@ -10,9 +10,12 @@ class VideoPlugin : public AnnotatorLib::ImageSet::ImageSetPlugin {
1010 VideoPlugin ();
1111
1212 virtual const std::string name () override { return " camera" ; }
13- virtual const std::string description () override { return " Camera Image Set" ; }
13+ virtual const std::string description () override {
14+ return " Camera Image Set" ;
15+ }
1416
15- virtual std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> create (std::string path) override ;
17+ virtual std::shared_ptr<AnnotatorLib::ImageSet::AbstractImageSet> create (
18+ std::string path) override ;
1619};
1720
1821#endif // VIDEOPLUGIN_H
You can’t perform that action at this time.
0 commit comments