summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_vpath_core.eo
blob: 0e238a02a90d45a82b234378005cf3346398d285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class Efl.Vpath.Core (Efl.Object, Efl.Vpath)
{
   [[ Core EFL implementation of a Vpath system

   @since 1.18
   ]]
   eo_prefix: efl_vpath_core;
   methods {
      core_get @class {
         [[ This gets the global EFL Core Vpath class - only 1 - singleton ]]
         return: Efl.Vpath.Core; [[ Get the singleton core vpath ]]
      }
      meta_set {
         [[ A Meta key is a mapping from a virtual path to a real one ]]
         params {
            key: string; [[ The magic path key being looked up ]]
            path: string; [[ The real path the key maps to ]]
         }
      }
      meta_get {
         [[ This returns the real path set for a Meta key, or NULL if not ]]
         params {
            key: string; [[ The magic path key being looked up ]]
         }
         return: string; [[Real file path]]
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Object.destructor;
      Efl.Vpath.fetch;
   }
}