/[cvs]/api/Classes/Files/FileInfo.cpp
ViewVC logotype

Annotation of /api/Classes/Files/FileInfo.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Sun Jul 1 20:47:58 2001 UTC (23 years ago) by bearsoft
Branch point for: lazy, MAIN
Initial revision

1 bearsoft 1.1 #include "FileInfo.h"
2    
3     FileInfo::FileInfo()
4     {
5     lastModified = new String();
6     name = new String();
7     file=false;
8     directory=false;
9     readPermission=true;
10     size=-1;
11     }
12    
13     FileInfo::~FileInfo()
14     {
15     if (lastModified!=null)
16     {
17     delete lastModified;
18     }
19    
20     if (name!=null)
21     {
22     delete name;
23     }
24     }
25    
26    

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26