|
%%%-------------------------------------------------------------------
|
|
%%% File : ibrowse_app.erl
|
|
%%% Author : Chandrashekhar Mullaparthi <chandrashekhar.mullaparthi@t-mobile.co.uk>
|
|
%%% Description :
|
|
%%%
|
|
%%% Created : 15 Oct 2003 by Chandrashekhar Mullaparthi <chandrashekhar.mullaparthi@t-mobile.co.uk>
|
|
%%%-------------------------------------------------------------------
|
|
-module(ibrowse_app).
|
|
-vsn('$Id: ibrowse_app.erl,v 1.1 2005/05/05 22:28:28 chandrusf Exp $ ').
|
|
|
|
-behaviour(application).
|
|
%%--------------------------------------------------------------------
|
|
%% Include files
|
|
%%--------------------------------------------------------------------
|
|
|
|
%%--------------------------------------------------------------------
|
|
%% External exports
|
|
%%--------------------------------------------------------------------
|
|
-export([
|
|
start/2,
|
|
stop/1
|
|
]).
|
|
|
|
%%--------------------------------------------------------------------
|
|
%% Internal exports
|
|
%%--------------------------------------------------------------------
|
|
-export([
|
|
]).
|
|
|
|
%%--------------------------------------------------------------------
|
|
%% Macros
|
|
%%--------------------------------------------------------------------
|
|
|
|
%%--------------------------------------------------------------------
|
|
%% Records
|
|
%%--------------------------------------------------------------------
|
|
|
|
%%====================================================================
|
|
%% External functions
|
|
%%====================================================================
|
|
%%--------------------------------------------------------------------
|
|
%% Func: start/2
|
|
%% Returns: {ok, Pid} |
|
|
%% {ok, Pid, State} |
|
|
%% {error, Reason}
|
|
%%--------------------------------------------------------------------
|
|
start(_Type, _StartArgs) ->
|
|
case ibrowse_sup:start_link() of
|
|
{ok, Pid} ->
|
|
{ok, Pid};
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
%%--------------------------------------------------------------------
|
|
%% Func: stop/1
|
|
%% Returns: any
|
|
%%--------------------------------------------------------------------
|
|
stop(_State) ->
|
|
ok.
|
|
|
|
%%====================================================================
|
|
%% Internal functions
|
|
%%====================================================================
|