From: Philipp Zabel Date: Sun, 15 Aug 2010 10:15:05 +0000 (+0200) Subject: Movie class: add get_cast method and Role class X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;ds=sidebyside;h=349f8ff51b7af72860397e4c1ea5f313db991c66;p=cinaest Movie class: add get_cast method and Role class --- diff --git a/src/movie.vala b/src/movie.vala index 2575c5e..e5212cb 100644 --- a/src/movie.vala +++ b/src/movie.vala @@ -45,5 +45,14 @@ public class Movie : Object { print ("get_plot (%s)\n", title); return ""; } + + public virtual List get_cast () { + print ("get_cast (%s)\n", title); + return null; + } } +public class Role { + public string actor_name; + public string character; +}