]> git.tdb.fi Git - builder.git/blobdiff - source/sourcegenerator.h
Allow specifying fixed arguments for source generators
[builder.git] / source / sourcegenerator.h
index bb1a88e6a5f99abb871e4cdd0723611980683084..be7d675fe8027aee3bb8a6a9c96c221e07325235 100644 (file)
@@ -15,6 +15,7 @@ public:
                Loader(SourceGenerator &);
 
        private:
+               void argument(const std::string &);
                void command(const std::string &);
                void in_suffix(const std::string &);
                void out_suffix(const std::string &);
@@ -23,6 +24,7 @@ public:
 private:
        const SourcePackage &package;
        std::list<std::string> out_suffixes;
+       std::list<std::string> arguments;
 
 public:
        SourceGenerator(Builder &, const SourcePackage &, const std::string &);