/* This file is part of the Chakra project Copyright (C) 2011 Lukas Appelhans This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #include "apm.h" #include #include #include #include #include APM::APM(OperationType type, QList operations, QStringList args, QObject * parent) : QObject(parent), m_operationType(type), m_operations(operations), m_args(args) { QTextStream out(stdout); //out << endl; out << "blub"; out << endl; out.flush(); kDebug() << "Start"; printf("Start\n"); kDebug() << "Type" << type << "Operations" << operations << "Args" << args; //QTimer::singleShot(0, AkabeiClient::Backend::instance(), SLOT(initialize())); //QCoreApplication::instance()->quit(); QTimer::singleShot(0, QCoreApplication::instance(), SLOT(quit())); } APM::~APM() {} #include "apm.moc"