Doxygen
Loading...
Searching...
No Matches
dotjob.h
Go to the documentation of this file.
1/******************************************************************************
2 *
3 * Copyright (C) 1997-2026 by Dimitri van Heesch.
4 *
5 * Permission to use, copy, modify, and distribute this software and its
6 * documentation under the terms of the GNU General Public License is hereby
7 * granted. No representations are made about the suitability of this software
8 * for any purpose. It is provided "as is" without express or implied warranty.
9 * See the GNU General Public License for more details.
10 *
11 * Documents produced by Doxygen are derivative works derived from the
12 * input used in their production; they are not affected by this license.
13 *
14 */
15
16#ifndef DOTJOB_H
17#define DOTJOB_H
18
19#include <vector>
20
21#include "dstring.h"
22
23struct DotJob
24{
25 DotJob(const DString &ap, const DString &rdn, const DString &f, const DString &m,
26 const DString &s, size_t sz, bool genMap = false)
27 : absPath(ap), relDotName(rdn), format(f), md5Hash(m), srcFile(s), size(sz), generateImageMap(genMap) {}
33 size_t size;
35};
36
37using DotJobs = std::vector<DotJob>;
38
39#endif // DOTJOB_H
A String class for use with Doxygen wrapping std::string and adding some additional functionality off...
Definition dstring.h:88
std::vector< DotJob > DotJobs
Definition dotjob.h:37
DString md5Hash
Definition dotjob.h:31
DString srcFile
Definition dotjob.h:32
size_t size
Definition dotjob.h:33
DString relDotName
Definition dotjob.h:29
bool generateImageMap
Definition dotjob.h:34
DString absPath
Definition dotjob.h:28
DotJob(const DString &ap, const DString &rdn, const DString &f, const DString &m, const DString &s, size_t sz, bool genMap=false)
Definition dotjob.h:25
DString format
Definition dotjob.h:30