X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackageref.h;h=7d2f54728f43886a7fe8bf71b5e7cbb6fed0dc25;hb=654de39b62a9a58fd8e1b5a557361d628345788b;hp=bc44da3000f121d539bb3f2731031b06ef0c042d;hpb=f1c967215e6b08095bdf07518472beca3067ec37;p=builder.git diff --git a/source/packageref.h b/source/packageref.h index bc44da3..7d2f547 100644 --- a/source/packageref.h +++ b/source/packageref.h @@ -1,11 +1,22 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #ifndef PACKAGEREF_H_ #define PACKAGEREF_H_ +#include #include class Builder; class Package; +/** +A proxy class that stores a package name and possibly a pointer to the package. +*/ class PackageRef { public: @@ -18,5 +29,6 @@ private: std::string name; Package *package; }; +typedef std::list PkgRefList; #endif