rcs.hh
1 /******************************************************************** 2 * Description: rcs.hh 3 * This header should be included in each source that uses NML, CMS, 4 * or any other libnml function. 5 * 6 * Derived from a work by Fred Proctor & Will Shackleford 7 * 8 * Author: 9 * License: LGPL Version 2 10 * System: Linux 11 * 12 * Copyright (c) 2004 All rights reserved. 13 * 14 * Last change: 15 ********************************************************************/ 16 #ifndef RCS_HH 17 #define RCS_HH 18 19 class RCS_LINKED_LIST; 20 class NMLmsg; 21 class NML; 22 class CMS; 23 class CMS_DIAGNOSTICS_INFO; 24 class NML_DIAGNOSTICS_INFO; 25 class CMS_SERVER; 26 class NML_SERVER; 27 class RCS_TIMER; 28 class RCS_CMD_MSG; 29 class RCS_STAT_MSG; 30 31 enum RCS_STATUS { /* Originally from nml_mod.hh */ 32 UNINITIALIZED_STATUS = -1, 33 RCS_DONE = 1, 34 RCS_EXEC = 2, 35 RCS_ERROR = 3 36 }; 37 38 #include "nml_type.hh" 39 #endif /* !defined(RCS_HH) */