Loading...
Searching...
No Matches
PointJob.h
Go to the documentation of this file.
1/*
2** This file is part of eOn.
3**
4** SPDX-License-Identifier: BSD-3-Clause
5**
6** Copyright (c) 2010--present, eOn Development Team
7** All rights reserved.
8**
9** Repo:
10** https://github.com/TheochemUI/eOn
11*/
12#pragma once
13#include "EonLogger.h"
14
15#include "Job.h"
16#include "Parameters.h"
17
18namespace eonc {
19
20class PointJob : public Job {
21public:
22 PointJob(std::unique_ptr<Parameters> parameters)
23 : Job(std::move(parameters)) {}
24 ~PointJob(void) = default;
25 std::vector<std::string> run(void);
26
27private:
29};
30
31} // namespace eonc
32
33using eonc::PointJob;
The job class is used to serve as an abstract class for all jobs, as well as to call a job at runtime...
Job(std::unique_ptr< Parameters > parameters)
Definition Job.h:58
~PointJob(void)=default
PointJob(std::unique_ptr< Parameters > parameters)
Definition PointJob.h:22
eonc::log::Scoped log
Definition PointJob.h:28
std::vector< std::string > run(void)
Virtual run; used solely for dynamic dispatch.
Definition PointJob.cpp:23
RAII resource manager for the ARTn C library with global synchronization.
RAII helper for class-scoped logging.
Definition EonLogger.h:171