WSF
Revision.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2003-2015 The Boeing Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef REVISION_HPP
13#define REVISION_HPP
14
15#include <vector>
16
17#include <QDateTime>
18
19#include "ViExport.hpp"
20
21namespace wizard
22{
25{
26 Revision(int aRevNo, int aParentRevNo, const std::string& aWorkingDir, int aTimestamp);
27
28 int revNo;
30 std::string workingDir;
31 std::vector<std::string> startupFiles;
32 QDateTime time;
33};
34
35typedef std::vector<Revision> RevisionList;
36} // namespace wizard
37#endif // REVISION_HPP
#define VI_EXPORT
Definition ViExport.hpp:38
Definition Runner.hpp:22
std::vector< Revision > RevisionList
Definition Revision.hpp:35
QDateTime time
Definition Revision.hpp:32
Revision(int aRevNo, int aParentRevNo, const std::string &aWorkingDir, int aTimestamp)
Definition Revision.cpp:14
std::vector< std::string > startupFiles
Definition Revision.hpp:31
int revNo
Definition Revision.hpp:28
std::string workingDir
Definition Revision.hpp:30
int parentRevNo
Definition Revision.hpp:29
Copyrights Multiple, All Rights Reserved