implement HasSongs interface

This commit is contained in:
Andrzej Rybczak
2012-09-02 13:47:57 +02:00
parent ad8fef343f
commit 6f59a175ec
37 changed files with 840 additions and 705 deletions

View File

@@ -32,10 +32,10 @@ struct Regex
virtual ~Regex();
/// @return regular expression
const std::string &regex() const { return m_regex; }
const std::string &regex() const;
/// @return compilation error (if there was any)
const std::string &error() const { return m_error; }
const std::string &error() const;
/// compiles regular expression
/// @result true if compilation was successful, false otherwise
@@ -59,4 +59,4 @@ private:
bool m_compiled;
};
#endif // _REGEXES_H
#endif // _REGEXES_H