~ubuntu-branches/ubuntu/natty/gav/natty

« back to all changes in this revision

Viewing changes to menu/MenuItem.h

  • Committer: Bazaar Package Importer
  • Author(s): Ari Pollak
  • Date: 2006-05-27 17:49:14 UTC
  • mfrom: (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060527174914-3hgcv8ov8y6hbqpb
Tags: 0.9.0-1
* New upstream release
  - Now saves settings between games (Closes: #261197)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
public:
36
36
  MenuItem() {}
37
37
  inline void setLabel(std::string l) {label = l;}
38
 
  inline std::string getLabel() {return label;}
 
38
  virtual std::string getLabel() {return label;}
39
39
  virtual int execute(std::stack<Menu *> &s) = 0;
40
40
  virtual ~MenuItem() {}
41
41
};