]> git.tdb.fi Git - builder.git/blob - source/problem.h
Move architecture information from Builder to class Architecture
[builder.git] / source / problem.h
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef PROBLEM_H_
9 #define PROBLEM_H_
10
11 #include <list>
12 #include <string>
13
14 class Package;
15
16 struct Problem
17 {
18         std::string package;
19         std::string descr;
20
21         Problem(const std::string &p, const std::string &d): package(p), descr(d) { }
22 };
23
24 typedef std::list<Problem> ProblemList;
25
26 #endif