]> git.tdb.fi Git - builder.git/blobdiff - source/pattern.h
Refactor transitive dependencies to work on all targets
[builder.git] / source / pattern.h
diff --git a/source/pattern.h b/source/pattern.h
deleted file mode 100644 (file)
index 4c79b4b..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef PATTERN_H_
-#define PATTERN_H_
-
-#include <string>
-
-/**
-Stores a filename pattern.  A pattern consists of a prefix and a suffix, and
-can be applied to a body to form a complete filename.  Either or both of the
-prefix and suffix may be empty.
-*/
-class Pattern
-{
-private:
-       std::string prefix;
-       std::string suffix;
-
-public:
-       /** Constructs a pattern from a single string.  The string must have exactly
-       one percent sign (%) to separate the prefix and suffix. */
-       Pattern(const std::string &);
-
-       /** Applies the pattern to a body string. */
-       std::string apply(const std::string &) const;
-};
-
-#endif