summaryrefslogtreecommitdiff
path: root/src/lib/examine_content_job.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/examine_content_job.h')
-rw-r--r--src/lib/examine_content_job.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/examine_content_job.h b/src/lib/examine_content_job.h
index 093c396eb..ca298c252 100644
--- a/src/lib/examine_content_job.h
+++ b/src/lib/examine_content_job.h
@@ -28,19 +28,19 @@ class Content;
class ExamineContentJob : public Job
{
public:
- ExamineContentJob(std::shared_ptr<const Film> film, std::shared_ptr<Content> content, bool tolerant);
+ ExamineContentJob(std::shared_ptr<const Film> film, std::vector<std::shared_ptr<Content>> content, bool tolerant);
~ExamineContentJob();
std::string name() const override;
std::string json_name() const override;
void run() override;
- std::shared_ptr<Content> content() const {
+ std::vector<std::shared_ptr<Content>> content() const {
return _content;
}
private:
- std::shared_ptr<Content> _content;
+ std::vector<std::shared_ptr<Content>> _content;
bool _tolerant;
};