11 lines
168 B
Ruby
11 lines
168 B
Ruby
|
module Sof
|
||
|
class Volotile
|
||
|
@@mapping = {
|
||
|
Virtual::MethodDefinition => []
|
||
|
}
|
||
|
def self.attributes clazz
|
||
|
@@mapping[clazz] || []
|
||
|
end
|
||
|
end
|
||
|
end
|