mirror of
https://github.com/ubf/ubf.git
synced 2026-04-24 05:35:47 +00:00
21 lines
695 B
Erlang
21 lines
695 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% $Id$
|
|
%%% Description: UBF Implmentation Utilities
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-ifndef(ubf_impl).
|
|
-define(ubf_impl, true).
|
|
|
|
%%%-------------------------------------------------------------------
|
|
%%% Macros
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%%-------------------------------------------------------------------
|
|
%%% Records
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-record(contract,
|
|
{name, vsn, types=[], leaftypenames=[], records=[], transitions=[], anystate=[]}).
|
|
|
|
-endif. % -ifndef(ubf_impl)
|