]> git.tdb.fi Git - builder.git/blobdiff - source/problem.h
Support specifying library modes on a per-library basis
[builder.git] / source / problem.h
index c2af878bdd01f571133da74306e57ca16cc61e81..d3d10d49d0f6736d8bbfc2698f3294420b5683f2 100644 (file)
@@ -1,18 +1,9 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef PROBLEM_H_
 #define PROBLEM_H_
 
 #include <list>
 #include <string>
 
-class Package;
-
 struct Problem
 {
        std::string package;
@@ -21,6 +12,4 @@ struct Problem
        Problem(const std::string &p, const std::string &d): package(p), descr(d) { }
 };
 
-typedef std::list<Problem> ProblemList;
-
 #endif