/*
 * kstart.h Part of the KDE project.
 *
 * Copyright (C) 1997-2000 Matthias Ettrich <ettrich@kde.org>
 *
 * Port to NETWM by David Faure <faure@kde.org>
 *
 */

#ifndef KSTART_H
#define KSTART_H


#include <tqobject.h>

class KWinModule;

class KStart: public TQObject {
  Q_OBJECT

public:
  KStart();
  ~KStart(){};
  
public slots:
  void windowAdded(WId);

private:

  void applyStyle(WId );
  void sendRule();

};

#endif