I have some problem with this library and my objects,I have 3 kind of object: page, widget, gallery
page:
int
string
dictionary of widget
widget:
int
string
dictionary gallery
gallery
int
string
array page
I create all protocol so I create something like:
page:
import widget
int
string
dict<Widget>
widget
import gallery
int
string
Gallery
dict<Gallery>
Gallery
import page
int
string
array<Page>
after I create delegate and all this I get "unknow type" error and cannot find protocol...where is the error?