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