Doxygen
Toggle main menu visibility
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
23
struct
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) {}
28
DString
absPath
;
29
DString
relDotName
;
30
DString
format
;
31
DString
md5Hash
;
32
DString
srcFile
;
33
size_t
size
;
34
bool
generateImageMap
;
35
};
36
37
using
DotJobs
= std::vector<DotJob>;
38
39
#endif
// DOTJOB_H
DString
A String class for use with Doxygen wrapping std::string and adding some additional functionality off...
Definition
dstring.h:88
DotJobs
std::vector< DotJob > DotJobs
Definition
dotjob.h:37
dstring.h
DotJob::md5Hash
DString md5Hash
Definition
dotjob.h:31
DotJob::srcFile
DString srcFile
Definition
dotjob.h:32
DotJob::size
size_t size
Definition
dotjob.h:33
DotJob::relDotName
DString relDotName
Definition
dotjob.h:29
DotJob::generateImageMap
bool generateImageMap
Definition
dotjob.h:34
DotJob::absPath
DString absPath
Definition
dotjob.h:28
DotJob::DotJob
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
DotJob::format
DString format
Definition
dotjob.h:30
src
dotjob.h
Generated by
1.19.0