Sha256: 99888eccd6fc19203a70af6d4bbbf91945b6b942a0e1aa84d549c4ea82031ae2
Contents?: true
Size: 1.08 KB
Versions: 20
Compression:
Stored size: 1.08 KB
Contents
/* This file is part of KDevelop Copyright 2002-2005 Roberto Raggi <roberto@kdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "control.h" #include "lexer.h" Control::Control() { } Control::~Control() { foreach(Problem *p, _M_problems) delete p; } const QList<Problem*>& Control::problems() const { return _M_problems; } void Control::reportProblem(Problem *problem) { _M_problems.append(problem); }
Version data entries
20 entries across 20 versions & 2 rubygems