Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include <string>
- #include <iostream>
- #include <fstream>
- using namespace std;
- struct Function {
- string name;
- bool isRecursive = false;
- Function* Next;
- };
- class List {
- private:
- Function* Start;
- Function* End;
- public:
- List();
- ~List();
- void addFunction(string& name, bool isRecursive);
- void PrintR(std::ofstream& file2);
- void PrintNR(std::ofstream& file2);
- bool InList(string& name);
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement