Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / tt / bin / shell / mover.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*%%  (c) Copyright 1993, 1994 Hewlett-Packard Company                   */
24 /*%%  (c) Copyright 1993, 1994 International Business Machines Corp.     */
25 /*%%  (c) Copyright 1993, 1994 Sun Microsystems, Inc.                    */
26 /*%%  (c) Copyright 1993, 1994 Novell, Inc.                              */
27 /*%%  $XConsortium: mover.h /main/3 1995/10/20 16:36:24 rswiston $                                                       */
28 /*
29  * mover.h - Interface to mover, an LS/TT-aware mv(1).
30  *
31  * Copyright (c) 1990 by Sun Microsystems, Inc.
32  *
33  */
34
35 #ifndef _MOVER_H
36 #define _MOVER_H
37
38 #include <api/c/tt_c.h>
39 #include <util/tt_string.h>
40
41 class mover : public _Tt_object {
42     public:
43         mover( char *arg0 );
44         virtual ~mover();
45
46         int                     do_mv();
47         Tt_status               do_ttmv();
48         bool_t                  can_mv( _Tt_string from_path );
49         Tt_status               open_tt();
50         Tt_status               close_tt();
51         void                    parse_args( int argc, char **argv );
52         void                    usage( FILE *fs = stderr ) const;
53         bool_t                  should_mv() { return _should_mv; }
54         bool_t                  force() { return _force; }
55         bool_t                  tt_opened() { return _tt_opened; }
56
57     private:
58         _Tt_string              _process_name;
59         _Tt_string              _prog_name;
60         _Tt_string              _process_id;
61         _Tt_string_list_ptr     _args;
62         bool_t                  _should_mv;
63         bool_t                  _force;
64         bool_t                  _tt_opened;
65         _Tt_string_list_ptr     _from_paths;
66         _Tt_string              _to_path;
67         bool_t                  _to_path_is_dir;
68 };
69
70 #endif /* _MOVER_H */