blob: 0fcb457cc79c97421b9f67f7b9daf8ce1ea9a360 (
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
|
/********************************************************************
* Description: nmldiag.hh
*
* 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 NMLDIAG_HH
#define NMLDIAG_HH
#include "cmsdiag.hh"
class NML_DIAGNOSTICS_INFO:public CMS_DIAGNOSTICS_INFO {
public:
void print();
};
extern "C" int nml_print_diag_list();
#endif
|