Skip to content

Commit 6f6da53

Browse files
committed
minor
1 parent 889f00b commit 6f6da53

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

source/imagesets/camera/CameraPlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
CameraPlugin::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

source/imagesets/camera/CameraPlugin.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

source/imagesets/imageftp/ImageFTPPlugin.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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

source/imagesets/video/VideoPlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
VideoPlugin::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

source/imagesets/video/VideoPlugin.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)