blob: 716ff21a5da7d6a4a7d44695322449e907c89d57 (
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
|
/********************************************************************
* Description: cms_user.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 CMS_USER_HH
#define CMS_USER_HH
class CMS;
class CMS_USER {
public:
CMS * cms;
};
#endif /* !defined(CMS_USER_HH) */
|