module Register: functor (
P
:
sig
val name : string
Name of the module. Arbitrary non-empty string.
val shortname : string
Prefix for plugin options. No space allowed.
val descr : string
description of the module. Free-form text.
end
) ->
General_services
Functors for generating plug-ins parameters.
Parameters: |
P |
: |
sig
val name: string (** Name of the module. Arbitrary non-empty string. *)
val shortname: string (** Prefix for plugin options. No space allowed. *)
val descr: string (** description of the module. Free-form text. *)
end
|
|
include Plugin.S
Functors for generating a new parameter
module Bool: functor (
X
:
sig
include Plugin.Parameter_input
val default : bool
The default value of the parameter. So giving the option
option_name
to Frama-C, change the value of the parameter to
not default
.
end
) ->
Plugin.BOOL
module Action:
Build a boolean option initialized fo false
, that is not saved.
module False:
Build a boolean option initialized to false
.
module True:
Build a boolean option initialized to true
.
module Int: functor (
X
:
sig
val default : int
include Plugin.Parameter_input_with_arg
end
) ->
Plugin.INT
Build an integer option.
module Zero:
Build an integer option initialized to 0
.
module String: functor (
X
:
sig
include Plugin.Parameter_input_with_arg
val default : string
end
) ->
Plugin.STRING
Build a string option.
module EmptyString:
Build a string option initialized to ""
.
module StringSet:
Build an option as a set of strings, initialized to the empty set.
module StringList:
Should not be used by casual users
module IndexedVal:
module StringHashtbl: