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