File: docking.h

package info (click to toggle)
kdeutils 4%3A2.2.2-9.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,892 kB
  • ctags: 10,879
  • sloc: cpp: 82,942; sh: 11,754; ansic: 4,638; perl: 1,852; makefile: 706; python: 258
file content (21 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _DOCKING_H_
#define _DOCKING_H_

#include <kdockwindow.h>

class KarmWindow;

class DockWidget : public KDockWindow {

  Q_OBJECT

public:
  DockWidget( KarmWindow* parent, const char *name=0);
  ~DockWidget();

};

#endif