Files
geef/src/geef_records.hrl
Carlos Martín Nieto 5ee6b055e9 tree: don't use a record for tree entry
Return the four elements directly
2013-03-28 13:32:20 +01:00

12 lines
277 B
Erlang

-record(ref, {handle, type :: atom()}).
-record(repo, {handle}).
-record(odb, {handle}).
-record(oid, {oid}).
-record(object, {type :: atom(), handle}).
-type ref() :: #ref{}.
-type repo() :: #repo{}.
-type odb() :: #odb{}.
-type oid() :: #oid{}.
-type object() :: #object{}.