Loading...
Searching...
No Matches
HessianJob.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 "Job.h"
14#include "Parameters.h"
15
16namespace eonc {
17
18class HessianJob : public Job {
19public:
20 HessianJob(std::unique_ptr<Parameters> parameters)
21 : Job(std::move(parameters)) {}
22 ~HessianJob(void) = default;
23 std::vector<std::string> run(void);
24};
25
26} // namespace eonc
27
The job class is used to serve as an abstract class for all jobs, as well as to call a job at runtime...
std::vector< std::string > run(void)
Virtual run; used solely for dynamic dispatch.
HessianJob(std::unique_ptr< Parameters > parameters)
Definition HessianJob.h:20
~HessianJob(void)=default
Job(std::unique_ptr< Parameters > parameters)
Definition Job.h:58
RAII resource manager for the ARTn C library with global synchronization.