]> git.tdb.fi Git - builder.git/blobdiff - source/sourcepackage.h
Migrate from msppath to mspfs
[builder.git] / source / sourcepackage.h
index bcdd74cbbfb30aae55b60e0ec9971720efc529b5..18d1395aa8e7d019a79ac9c090ec727b9fced281 100644 (file)
@@ -50,13 +50,13 @@ public:
                void tar_file(const std::string &);
        };
 
-       SourcePackage(Builder &, const std::string &, const Msp::Path &);
+       SourcePackage(Builder &, const std::string &, const Msp::FS::Path &);
        const std::string   &get_name() const           { return name; }
        const std::string   &get_version() const        { return version; }
        const std::string   &get_description() const    { return description; }
-       const Msp::Path &get_source() const       { return source; }
-       Msp::Path     get_temp_dir() const;
-       Msp::Path     get_out_dir() const;
+       const Msp::FS::Path &get_source() const       { return source; }
+       Msp::FS::Path     get_temp_dir() const;
+       Msp::FS::Path     get_out_dir() const;
        const ComponentList &get_components() const     { return components; }
        const Config        &get_config() const         { return config; }
        const BuildInfo     &get_build_info() const     { return build_info; }
@@ -70,7 +70,7 @@ private:
        std::string   version;
        std::string   description;
 
-       Msp::Path source;
+       Msp::FS::Path source;
        PackageList   base_reqs;
        FeatureList   features;
        BuildInfo     build_info;