#ifndef CUSTOM_TRACKER_CU_TK_MAP_WINDOW_H
# define CUSTOM_TRACKER_CU_TK_MAP_WINDOW_H

//<<<<<< INCLUDES                                                       >>>>>>

# include <qwidget.h>

#include <qlayout.h>
#include <qlabel.h>
#include <qpushbutton.h>

//<<<<<< PUBLIC DEFINES                                                 >>>>>>
//<<<<<< PUBLIC CONSTANTS                                               >>>>>>
//<<<<<< PUBLIC TYPES                                                   >>>>>>
//<<<<<< PUBLIC VARIABLES                                               >>>>>>
//<<<<<< PUBLIC FUNCTIONS                                               >>>>>>
//<<<<<< CLASS DECLARATIONS                                             >>>>>>

class CuTkMapWindow : public QWidget
{
public:
  CuTkMapWindow (QWidget *parent=0, const char *name=0);
    // implicit copy constructor
    // implicit assignment operator
    // implicit destructor
    
private:
  QGridLayout *grid;
  QPushButton *button1;
  QPushButton *button2;
  QLabel *label1;
  QLabel *label2;
  
};

//<<<<<< INLINE PUBLIC FUNCTIONS                                        >>>>>>
//<<<<<< INLINE MEMBER FUNCTIONS                                        >>>>>>

#endif // CUSTOM_TRACKER_CU_TK_MAP_WINDOW_H
