test: added GraphFilter and GraphFilterConductor tests
This commit is contained in:
@@ -12,14 +12,14 @@ class TextAccess;
|
||||
class Parser
|
||||
{
|
||||
public:
|
||||
Parser(std::shared_ptr<ParserClient> client);
|
||||
Parser(ParserClient* client);
|
||||
virtual ~Parser();
|
||||
|
||||
virtual void parseFiles(const std::vector<std::string>& filePaths) = 0;
|
||||
virtual void parseFile(std::shared_ptr<TextAccess> textAccess) = 0;
|
||||
|
||||
protected:
|
||||
std::shared_ptr<ParserClient> m_client;
|
||||
ParserClient* m_client;
|
||||
};
|
||||
|
||||
#endif // PARSER_H
|
||||
|
||||
Reference in New Issue
Block a user