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#include "qcstring.h"
21
22struct DotJob
23{
24 DotJob(const QCString &ap, const QCString &rdn, const QCString &f, const QCString &m,
25 const QCString &s, size_t sz, bool genMap = false)
26 : absPath(ap), relDotName(rdn), format(f), md5Hash(m), srcFile(s), size(sz), generateImageMap(genMap) {}
32 size_t size;
34};
35
36using DotJobs = std::vector<DotJob>;
37
38#endif // DOTJOB_H
This is an alternative implementation of QCString.
Definition qcstring.h:101
std::vector< DotJob > DotJobs
Definition dotjob.h:36
QCString srcFile
Definition dotjob.h:31
QCString md5Hash
Definition dotjob.h:30
size_t size
Definition dotjob.h:32
QCString format
Definition dotjob.h:29
bool generateImageMap
Definition dotjob.h:33
DotJob(const QCString &ap, const QCString &rdn, const QCString &f, const QCString &m, const QCString &s, size_t sz, bool genMap=false)
Definition dotjob.h:24
QCString relDotName
Definition dotjob.h:28
QCString absPath
Definition dotjob.h:27