ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/Frodo4/Src/main_Be.h
(Generate patch)

Comparing Frodo4/Src/main_Be.h (file contents):
Revision 1.6 by cebix, 2004-01-13T17:08:58Z vs.
Revision 1.8 by cebix, 2005-06-27T19:55:48Z

# Line 1 | Line 1
1   /*
2   *  main_Be.h - Main program, BeOS specific stuff
3   *
4 < *  Frodo (C) 1994-1997,2002-2004 Christian Bauer
4 > *  Frodo (C) 1994-1997,2002-2005 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 359 | Line 359 | public:
359                  MovePenTo(204, 52);
360                  DrawString("<Christian.Bauer@uni-mainz.de>");
361                  MovePenTo(204, 75);
362 <                DrawString(B_UTF8_COPYRIGHT " Copyright 1994-1997,2002-2004");
362 >                DrawString(B_UTF8_COPYRIGHT " Copyright 1994-1997,2002-2005");
363                  MovePenTo(204, 87);
364                  DrawString("Freely distributable.");
365          }
# Line 388 | Line 388 | void Frodo::AboutRequested(void)
388   {
389          new AboutWindow();
390   }
391 +
392 +
393 + /*
394 + *  Determine whether path name refers to a directory
395 + */
396 +
397 + bool IsDirectory(const char *path)
398 + {
399 +        struct stat st;
400 +        return stat(path.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
401 + }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines