Efl vpath: Fix namespacing to use . and not _.

This commit is contained in:
Tom Hacohen 2016-05-12 11:16:13 +01:00
parent 56eee19102
commit 6f4d3b4f07
4 changed files with 7 additions and 7 deletions

View File

@ -26,7 +26,7 @@ interface Efl.Vpath
params {
path: const(char)*; [[ The input virtual file path to fetch ]]
}
return: own(Efl.Vpath_File *); [[ An object representing the file ]]
return: own(Efl.Vpath.File *); [[ An object representing the file ]]
}
}
}

View File

@ -1,4 +1,4 @@
class Efl.Vpath_File (Eo.Base)
class Efl.Vpath.File (Eo.Base)
{
[[ VPath File is an actual representation of a downloaded/mapped vpath file

View File

@ -1,4 +1,4 @@
class Efl.Vpath_File.Core (Efl.Vpath_File)
class Efl.Vpath.File.Core (Efl.Vpath.File)
{
[[ Core EFL implementation of a Vpath File
@ -9,7 +9,7 @@ class Efl.Vpath_File.Core (Efl.Vpath_File)
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Efl.Vpath_File.do;
Efl.Vpath_File.wait;
Efl.Vpath.File.do;
Efl.Vpath.File.wait;
}
}

View File

@ -1,4 +1,4 @@
class Efl.Vpath_Manager (Eo.Base)
class Efl.Vpath.Manager (Eo.Base)
{
[[ Vpath Manager manages multiple VPath objects that remap/download
@ -12,7 +12,7 @@ class Efl.Vpath_Manager (Eo.Base)
params {
path: const(char)*; [[ The input virtual file path to fetch ]]
}
return: own(Efl.Vpath_File *); [[ An object representing the file ]]
return: own(Efl.Vpath.File *); [[ An object representing the file ]]
}
register @class {
[[Register a vpath with the manager ]]