From c6385eb2b7425b7003affb0bb24537e51f63b424 Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 5 Mar 2012 14:05:01 +0000 Subject: [PATCH] NetNode: More getters (thanks kropniczki) git-svn-id: svn://ultimatepp.org/upp/trunk@4660 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Path.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/uppsrc/Core/Path.h b/uppsrc/Core/Path.h index bad2648d6..2963ff114 100644 --- a/uppsrc/Core/Path.h +++ b/uppsrc/Core/Path.h @@ -288,9 +288,13 @@ public: enum { UNKNOWN, NETWORK, GROUP, SERVER, SHARE }; - String GetName() const { return name; } - String GetPath() const { return path; } + String GetName() const { return name; } + String GetPath() const { return path; } int GetDisplayType() const; + String GetRemote() const { return remote; } + String GetLocal() const { return local; } + String GetProvider() const { return provider; } + String GetComment() const { return comment; } Array Enum() const; void Serialize(Stream& s);