File: n_grid.sru
Size: 541
Date: Sun, 25 Sep 2011 18:06:27 +0200
$PBExportHeader$n_grid.sru
forward
global type n_grid from NonVisualObject
end type
end forward

global type n_grid from NonVisualObject
end type
global n_grid n_grid

type variables
public:

long     id
string      last_name
string      first_name
string      title
string      street
string      city
string      state
string      zip
string      phone
string      fax
end variables

on n_grid.create
call super::create
TriggerEvent( this, "constructor" )
end on

on n_grid.destroy
TriggerEvent( this, "destructor" )
call super::destroy
end on