Canviant namespaces jerarquic
[makerl.git] / src / hook_behaviour.erl
blob333025be6781d076acf40600c46c281a1e75bce6
1 %%%-------------------------------------------------------------------
2 %%% File : hook_behaviour.erl
3 %%% Author : <>
4 %%% Description :
5 %%%
6 %%% Created : 25 Mar 2011 by <>
7 %%%-------------------------------------------------------------------
8 -module(hook_behaviour).
9 -export([behaviour_info/1]).
11 behaviour_info(callbacks) ->
12 [{get_status, 3},
13 {build, 3},
14 {expand_rule, 3}];
15 behaviour_info(_Other) ->
16 undefined.