]> git.tdb.fi Git - builder.git/blobdiff - source/installedfile.h
Mark overridden virtual functions as such
[builder.git] / source / installedfile.h
index ef76ae7f60e8ca79b204c7e10122a4c46ec09bb5..0dd671f42bf56c745d44d860bd2b6448fcbc41e2 100644 (file)
@@ -15,14 +15,25 @@ private:
 
 public:
        InstalledFile(Builder &, const SourcePackage &, FileTarget &, const std::string & =std::string());
-       virtual const char *get_type() const { return "InstalledFile"; }
+private:
+       static Msp::FS::Path generate_target_path(const Msp::FS::Path &, const FileTarget &i, const std::string &);
+
+public:
+       const char *get_type() const override { return "InstalledFile"; }
        FileTarget &get_source() const { return source; }
+
+       /** Sets a symlink for the file.  A relative path will be rooted at the
+       directory the file resides in. */
+       void set_symlink(const Msp::FS::Path &);
+
        const Msp::FS::Path &get_symlink() const { return link; }
-       virtual Target *get_real_target();
+
+       Target *get_real_target() override;
 private:
-       virtual void check_rebuild();
+       void check_rebuild() override;
 
-       static Msp::FS::Path generate_target_path(const Msp::FS::Path &, const FileTarget &i, const std::string &);
+public:
+       void clean() override;
 };
 
 #endif