]> Dogcows Code - chaz/openbox/blobdiff - otk/application.hh
rm the old code including the .pys and the c++ shit
[chaz/openbox] / otk / application.hh
diff --git a/otk/application.hh b/otk/application.hh
deleted file mode 100644 (file)
index 6da36d2..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-#ifndef __application_hh
-#define __application_hh
-
-#include "eventdispatcher.hh"
-
-namespace otk {
-
-class AppWidget;
-
-class Application : public EventDispatcher {
-
-public:
-
-  Application(int argc, char **argv);
-  virtual ~Application();
-
-  inline int screen() const { return _screen; }
-  
-  virtual void run(void);
-  // more bummy cool functionality
-
-  void setDockable(bool dockable) { _dockable = dockable; }
-  inline bool isDockable(void) const { return _dockable; }
-
-private:
-  void loadStyle(void);
-
-  int _screen;
-  bool _dockable;
-
-  int _appwidget_count;
-
-  friend class AppWidget;
-};
-
-}
-
-#endif
This page took 0.023037 seconds and 4 git commands to generate.