aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/FrameworkConfigurationLocation.h
diff options
context:
space:
mode:
Diffstat (limited to 'parameter/FrameworkConfigurationLocation.h')
-rw-r--r--parameter/FrameworkConfigurationLocation.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/parameter/FrameworkConfigurationLocation.h b/parameter/FrameworkConfigurationLocation.h
index 2b3bd9a..6becfe5 100644
--- a/parameter/FrameworkConfigurationLocation.h
+++ b/parameter/FrameworkConfigurationLocation.h
@@ -37,13 +37,18 @@ class CFrameworkConfigurationLocation : public CKindElement
public:
CFrameworkConfigurationLocation(const string& strName, const string& strKind);
+ // File path
string getFilePath(const string& strBaseFolder) const;
+
+ // Folder path
string getFolderPath(const string& strBaseFolder) const;
// From IXmlSink
virtual bool fromXml(const CXmlElement& xmlElement, CXmlSerializingContext& serializingContext);
private:
+ // Detect relative path
bool isPathRelative() const;
+ // Path
string _strPath;
};