OMNeT++ Parallel Simulation Support  6.0.3
messagetags.h
1 //=========================================================================
2 // MESSAGETAGS.H - part of
3 //
4 // OMNeT++/OMNEST
5 // Discrete System Simulation in C++
6 //
7 //=========================================================================
8 
9 /*--------------------------------------------------------------*
10  Copyright (C) 1992-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_MESSAGETAGS_H
18 #define __OMNETPP_MESSAGETAGS_H
19 
20 //
21 // message tags:
22 //
23 enum {
24  TAG_SETUP_LINKS = 1000,
25  TAG_RUNNUMBER,
26  TAG_CMESSAGE,
27  TAG_NULLMESSAGE,
28  TAG_CMESSAGE_WITH_NULLMESSAGE,
29  TAG_TERMINATIONEXCEPTION,
30  TAG_EXCEPTION
31 };
32 
33 #endif