00001 //========================================================================= 00002 // MESSAGETAGS.H - part of 00003 // 00004 // OMNeT++/OMNEST 00005 // Discrete System Simulation in C++ 00006 // 00007 // Written by: Andras Varga, 2003 00008 // 00009 //========================================================================= 00010 00011 /*--------------------------------------------------------------* 00012 Copyright (C) 2003-2005 Andras Varga 00013 Monash University, Dept. of Electrical and Computer Systems Eng. 00014 Melbourne, Australia 00015 00016 This file is distributed WITHOUT ANY WARRANTY. See the file 00017 `license' for details on this and other legal matters. 00018 *--------------------------------------------------------------*/ 00019 00020 #ifndef __MESSAGETAGS_H 00021 #define __MESSAGETAGS_H 00022 00023 // 00024 // message tags: 00025 // 00026 enum { 00027 TAG_SETUP_LINKS = 1000, 00028 TAG_RUNNUMBER, 00029 TAG_CMESSAGE, 00030 TAG_NULLMESSAGE, 00031 TAG_CMESSAGE_WITH_NULLMESSAGE, 00032 TAG_TERMINATIONEXCEPTION, 00033 TAG_EXCEPTION 00034 }; 00035 00036 #endif