This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
class Test { | |
public: | |
Test(); | |
int& operator[](const int& index); | |
const int& operator[](const int& index) const; | |
private: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "getting data..." | |
sed -r ' | |
s/"/\\"/g | |
s/\\n/\\\\n/g | |
s/^#include.*\.h.*$//g | |
s/^#include.*\.cpp.*$//g | |
s/\t/ /g | |
' src/RecursiveDescent.cpp > RecursiveDescentCPP.template |