dtinfo subtree dtinfo
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Managers / MapMgr.hh
1 /*
2  * $XConsortium: MapMgr.hh /main/4 1996/09/17 13:17:34 cde-hal $
3  *
4  * Copyright (c) 1992 HaL Computer Systems, Inc.  All rights reserved.
5  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
6  * States.  Use of a copyright notice is precautionary only and does not
7  * imply publication or disclosure.
8  * 
9  * This software contains confidential information and trade secrets of HaL
10  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
11  * without the prior express written permission of HaL Computer Systems, Inc.
12  * 
13  *                         RESTRICTED RIGHTS LEGEND
14  * Use, duplication, or disclosure by the Government is subject to
15  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
16  * Technical Data and Computer Software clause at DFARS 252.227-7013.
17  *                        HaL Computer Systems, Inc.
18  *                  1315 Dell Avenue, Campbell, CA  95008
19  * 
20  */
21
22 #include "UAS.hh"
23
24 class MapAgent;
25
26
27 class MapMgr : public Long_Lived
28 {
29 public: // functions
30   MapMgr();
31
32   void display_centered_on (UAS_Pointer<UAS_Common> &);
33
34   void set_auto_update(int value);
35
36   void clear_map(UAS_Pointer<UAS_Common> &);
37
38 protected: // functions
39
40 protected: // variables
41   MapAgent *f_map_agent;
42
43 private:
44   LONG_LIVED_HH(MapMgr,map_mgr);
45 };
46
47 LONG_LIVED_HH2(MapMgr,map_mgr);