Hi all,

Please help me with this related to properties in json, clutter, and gob.

If I have a string value in the json file, then I know how to declare it in the 
myfile.gob.
For example, if in json file, I have:
  "my_string" : "hello world"
then in myfile.gob, I would declare the property "my_string" as:
  private gchar * my_string;
  property STRING my_string
          (nick = "my string",
           blurb = "my string",
           default_value = NULL,
           export,
           link);

But my problem is that now I have an array of sthing in my json file:
   "my_list" : ["abc", "cdf", "efg"]

So how I would declare the property for an array (like the "children" in the 
json)?
Thanks a lot


      
_______________________________________________
clutter-app-devel-list mailing list
[email protected]
http://lists.clutter-project.org/listinfo/clutter-app-devel-list

Reply via email to