X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackageref.h;h=da25f53eea7c684bda15f32b4c7e9b5f4f16b844;hb=5d4bc56c55a3928d0a24f18d1ab06f243d39e0a7;hp=bc44da3000f121d539bb3f2731031b06ef0c042d;hpb=f1c967215e6b08095bdf07518472beca3067ec37;p=builder.git diff --git a/source/packageref.h b/source/packageref.h index bc44da3..da25f53 100644 --- a/source/packageref.h +++ b/source/packageref.h @@ -1,11 +1,15 @@ #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 +22,6 @@ private: std::string name; Package *package; }; +typedef std::list PkgRefList; #endif