/* This file is part of the Chakra project Copyright (C) 2011 Lukas Appelhans <l.appelhans@gmx.de> 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 <kdebug.h>#include <QStringList>#include <QTextStream>APM::APM(QObject*parent):QObject(parent){}APM::~APM(){}voidAPM::start(OperationTypetype,QList<Operation>operations,QStringListargs){QTextStreamout(stdout);//out << endl;out<<"blub";out<<endl;out.flush();kDebug()<<"Start";printf("Start\n");kDebug()<<"Type"<<type<<"Operations"<<operations<<"Args"<<args;}#include "apm.moc"