]> git.tdb.fi Git - builder.git/blobdiff - source/package.h
Change mspparser -> mspdatafile
[builder.git] / source / package.h
index 1aebf163865a98c290d5a668a55cf8ffc790b9d3..68af269a9c6b4d0575e0dedfba9ca9b5c0c2e924 100644 (file)
@@ -10,7 +10,7 @@ Distributed under the LGPL
 
 #include <list>
 #include <string>
-#include <msp/parser/loader.h>
+#include <msp/datafile/loader.h>
 #include "buildinfo.h"
 #include "component.h"
 #include "condition.h"
@@ -26,8 +26,7 @@ typedef std::list<Package *> PackageList;
 /**
 A package is a distributable piece of software.  They consist of one or more
 Components and may depend on other packages.  Packages also have configuration
-to determine where files are installed and which features to include (features
-NYI).
+to determine where files are installed and which features to include.
 */
 class Package
 {
@@ -41,7 +40,7 @@ public:
        };
 
        /// Loads a package from a file.
-       class Loader: public Msp::Parser::Loader
+       class Loader: public Msp::DataFile::Loader
        {
        public:
                Loader(Package &);