]> git.tdb.fi Git - builder.git/blobdiff - source/problem.h
Separate the command-line interface into its own class
[builder.git] / source / problem.h
index 83de7dfaf34831b8d2d9db5e97d5916fa47745b8..d3d10d49d0f6736d8bbfc2698f3294420b5683f2 100644 (file)
@@ -4,8 +4,6 @@
 #include <list>
 #include <string>
 
-class Package;
-
 struct Problem
 {
        std::string package;
@@ -14,6 +12,4 @@ struct Problem
        Problem(const std::string &p, const std::string &d): package(p), descr(d) { }
 };
 
-typedef std::list<Problem> ProblemList;
-
 #endif