msgcompileroptions.h Source File

NEDXML API: msgcompileroptions.h Source File
NEDXML API
msgcompileroptions.h
1//==========================================================================
2// MSGCOMPILEROPTIONS.H - part of
3//
4// OMNeT++/OMNEST
5// Discrete System Simulation in C++
6//
7//==========================================================================
8
9/*--------------------------------------------------------------*
10 Copyright (C) 2002-2017 Andras Varga
11 Copyright (C) 2006-2017 OpenSim Ltd.
12
13 This file is distributed WITHOUT ANY WARRANTY. See the file
14 `license' for details on this and other legal matters.
15*--------------------------------------------------------------*/
16
17#ifndef __OMNETPP_NEDXML_MSGCOMPILEROPTIONS_H
18#define __OMNETPP_NEDXML_MSGCOMPILEROPTIONS_H
19
20#include <string>
21#include <vector>
22#include "nedxmldefs.h"
23
24namespace omnetpp {
25namespace nedxml {
26
33{
34 std::vector<std::string> importPath;
35 std::string exportDef;
36 bool generateClasses = true;
37 bool generateDescriptors = true;
38 bool generateSettersInDescriptors = true;
39};
40
41} // namespace nedxml
42} // namespace omnetpp
43
44
45#endif
46
47
Options for MsgCompiler.
Definition msgcompileroptions.h:33