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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (vendor branch)
Sun Jul 1 20:47:58 2001 UTC (22 years, 10 months ago) by bearsoft
Branch: lazy, MAIN
CVS Tags: start, HEAD
Changes since 1.1: +0 -0 lines
First import

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