aboutsummaryrefslogtreecommitdiffstats
path: root/lib/plpdirent.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2002-07-14 06:35:33 +0000
committerFritz Elfert <felfert@to.com>2002-07-14 06:35:33 +0000
commitf9e740af36b44a1c9e834dc8fff08fba8fb1b13f (patch)
tree8b84b4ffcb235224f8de1761fdd59446f155281d /lib/plpdirent.h
parent97984a6f290d1bd87aaba317c47c70a14b1c0b31 (diff)
downloadplptools-f9e740af36b44a1c9e834dc8fff08fba8fb1b13f.tar.gz
plptools-f9e740af36b44a1c9e834dc8fff08fba8fb1b13f.tar.bz2
plptools-f9e740af36b44a1c9e834dc8fff08fba8fb1b13f.zip
Applied patches from debian bug #104967 (not yet tested)
Diffstat (limited to 'lib/plpdirent.h')
-rw-r--r--lib/plpdirent.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/plpdirent.h b/lib/plpdirent.h
index c07ce3c..1c5e8ab 100644
--- a/lib/plpdirent.h
+++ b/lib/plpdirent.h
@@ -182,8 +182,8 @@ private:
u_int32_t attr;
PlpUID UID;
PsiTime time;
- string attrstr;
- string name;
+ std::string attrstr;
+ std::string name;
};
/**
@@ -195,8 +195,8 @@ private:
* @author Fritz Elfert <felfert@to.com>
*/
class PlpDrive {
- friend rfsv32;
- friend rfsv16;
+ friend class rfsv32;
+ friend class rfsv16;
public:
/**
@@ -238,7 +238,7 @@ public:
*
* @param ret The string is returned here.
*/
- void getMediaType(string &ret);
+ void getMediaType(std::string &ret);
/**
* Retrieve the attributes of the drive.
@@ -292,7 +292,7 @@ public:
*
* @param ret The string is returned here.
*/
- void getMediaAttribute(string &ret);
+ void getMediaAttribute(std::string &ret);
/**
* Retrieve the UID of the drive.
@@ -322,7 +322,7 @@ public:
*
* returns The volume name of the drive.
*/
- string getName();
+ std::string getName();
/**
* Retrieve the drive letter of the drive.
@@ -347,7 +347,7 @@ private:
u_int64_t size;
u_int64_t space;
char drivechar;
- string name;
+ std::string name;
};
#endif