]> git.tdb.fi Git - builder.git/blob - source/problem.h
Replace per-file copyright notices with a single file
[builder.git] / source / problem.h
1 #ifndef PROBLEM_H_
2 #define PROBLEM_H_
3
4 #include <list>
5 #include <string>
6
7 class Package;
8
9 struct Problem
10 {
11         std::string package;
12         std::string descr;
13
14         Problem(const std::string &p, const std::string &d): package(p), descr(d) { }
15 };
16
17 typedef std::list<Problem> ProblemList;
18
19 #endif