[go: up one dir, main page]

File: menuentry.cpp

package info (click to toggle)
qonk 0.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,076 kB
  • ctags: 2,026
  • sloc: cpp: 14,978; sh: 3,464; makefile: 200
file content (26 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "guichan/guichan.hpp"

#include "menuentry.h"
#include "menusystem.h"

using namespace gcn;
using namespace std;

MenuEntry::MenuEntry(gcn::Widget *w)
 : menuSystem(0), widget(w)
{

}

MenuEntry::~MenuEntry()
{
  delete widget;
}

void
MenuEntry::registered(MenuSystem *system)
{
  menuSystem = system;
}