00001 #include "phpfiles.h" 00002 #include <fstream> 00003 00004 int main(int argv, char** argc){ 00005 try{ 00006 PHPFiles phpFiles(cin,0); 00007 phpFiles.execute(); 00008 } catch (const char *s){ 00009 cerr << s << endl; 00010 } catch (const string s){ 00011 cerr << s << endl; 00012 }; 00013 }