home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / DOS / KALENDER / IMPRO122 / IMPROSRC.ZIP / AUTOHAND.H < prev    next >
C/C++ Source or Header  |  1994-06-12  |  356b  |  25 lines

  1. #ifndef __AUTOHAND_H
  2. #define __AUTOHAND_H
  3.  
  4. #include "bstring.h"
  5.  
  6. class autohand
  7.     {
  8.     public:
  9.         autohand();
  10.         ~autohand();
  11.  
  12.         bstring path (char * full_path);
  13.         void reverse_drives ();
  14.         void print_message ();
  15.  
  16.     private:
  17.         void move_to_dir ();
  18.  
  19.         bstring home;
  20.         bstring original_home;
  21.         int    home_size;
  22.  
  23.     };
  24.  
  25. #endif /* __AUTOHAND_H */