pollymc/logic/pathmatcher/IPathMatcher.h
Petr Mrázek 96fdaebb5c GH-926 implement log cleaning functionality
Also adds gzip compressed log support
2015-08-18 08:51:12 +02:00

13 lines
195 B
C++

#pragma once
#include <memory>
class IPathMatcher
{
public:
typedef std::shared_ptr<IPathMatcher> Ptr;
public:
virtual ~IPathMatcher(){};
virtual bool matches(const QString &string) = 0;
};