mover.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 libraries 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. #ifndef _MOVER_H
  35. #define _MOVER_H
  36. #include <Tt/tt_c.h>
  37. #include <util/tt_string.h>
  38. class mover : public _Tt_object {
  39. public:
  40. mover( char *arg0 );
  41. virtual ~mover();
  42. int do_mv();
  43. Tt_status do_ttmv();
  44. bool_t can_mv( _Tt_string from_path );
  45. Tt_status open_tt();
  46. Tt_status close_tt();
  47. void parse_args( int argc, char **argv );
  48. void usage( FILE *fs = stderr ) const;
  49. bool_t should_mv() { return _should_mv; }
  50. bool_t force() { return _force; }
  51. bool_t tt_opened() { return _tt_opened; }
  52. private:
  53. _Tt_string _process_name;
  54. _Tt_string _prog_name;
  55. _Tt_string _process_id;
  56. _Tt_string_list_ptr _args;
  57. bool_t _should_mv;
  58. bool_t _force;
  59. bool_t _tt_opened;
  60. _Tt_string_list_ptr _from_paths;
  61. _Tt_string _to_path;
  62. bool_t _to_path_is_dir;
  63. };
  64. #endif /* _MOVER_H */