Connect++ 0.7.0
A fast, readable connection prover for first-order logic.
Loading...
Searching...
No Matches
FileIncludeAdder Struct Reference

One of several basic semantic actions. More...

#include <TPTPParser.hpp>

Public Member Functions

void operator() (const vector< string > &, qi::unused_type, qi::unused_type) const
 

Detailed Description

One of several basic semantic actions.

Collectively, store include file information, comments and so on.

Definition at line 436 of file TPTPParser.hpp.

Member Function Documentation

◆ operator()()

void FileIncludeAdder::operator() ( const vector< string > & inc,
qi::unused_type ,
qi::unused_type  ) const

Definition at line 984 of file TPTPParser.cpp.

986 {
987 FileIncludeItem item;
988 item.first = inc[0];
989 vector<string> inc2 = inc;
990 inc2.erase(inc2.begin());
991 item.second = inc2;
992 file_includes.push_back(item);
993 // This line does the actual inclusion.
994 recursive_tptp_include(item);
995 }

The documentation for this struct was generated from the following files: