00001 /* 00002 Modular Psi - A graph tracker of the Parapsychologcal scientific development 00003 Copyright (C) 2005 Leonardo Stern 00004 00005 This program is free software; you can redistribute it and/or modify it under 00006 the terms of the Common Public License Version 1.0 or (at your option) any later version. 00007 00008 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 00009 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00010 See the Common Public License for more details. 00011 00012 You should have received a copy of the Common Public License along with this program; 00013 */ 00014 00015 #ifndef DOT_HPP 00016 #define DOT_HPP 00017 00018 #include <qobject.h> 00019 #include "../propositiongraph.hpp" 00020 00021 class Dot : public QObject 00022 { 00023 public: 00024 Dot(PropositionGraph* cl); 00025 ~Dot(); 00026 void exportDot(QString filename); 00027 void callDot(); 00028 PropositionGraph* caller; 00029 QString dir; 00030 }; 00031 00032 #endif // DOT_HPP