X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffs%2Fstat.cpp;h=ae9f803a9d16f1030da32d1c9e63f14cf7b48356;hb=99b9121e2158603372c7313400283b622e6754d8;hp=f4566ae8b6ef8363cd68f709f2d66924137a58a2;hpb=609c9a508cfdc7b42c46c4f21d17639204165a00;p=libs%2Fcore.git diff --git a/source/fs/stat.cpp b/source/fs/stat.cpp index f4566ae..ae9f803 100644 --- a/source/fs/stat.cpp +++ b/source/fs/stat.cpp @@ -7,20 +7,6 @@ using namespace std; namespace Msp { namespace FS { -Stat::Private::Private(): - owner_id(0), - group_id(0) -{ } - - -Stat::Stat(): - exists(false), - type(UNKNOWN), - size(0), - alloc_size(0), - priv(0) -{ } - Stat::Stat(const Stat &other): exists(other.exists), type(other.type), @@ -50,14 +36,14 @@ Stat::~Stat() delete priv; } -const std::string &Stat::get_owner() const +const string &Stat::get_owner() const { if(priv && owner_info.owner.empty()) priv->fill_owner_info(owner_info); return owner_info.owner; } -const std::string &Stat::get_group() const +const string &Stat::get_group() const { if(priv && owner_info.group.empty()) priv->fill_owner_info(owner_info);