implement HasSongs interface
This commit is contained in:
@@ -32,10 +32,10 @@ struct Regex
|
||||
virtual ~Regex();
|
||||
|
||||
/// @return regular expression
|
||||
const std::string ®ex() const { return m_regex; }
|
||||
const std::string ®ex() 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
|
||||
|
||||
Reference in New Issue
Block a user