File indexing completed on 2025-04-19 09:09:47
0001 #ifndef AMEGIC_String_String_Library_H
0002 #define AMEGIC_String_String_Library_H
0003
0004 #include "AMEGIC++/String/MyString.H"
0005
0006 namespace AMEGIC {
0007 class String_Library {
0008 static const int buffersize = 512*32;
0009 int m_mode;
0010 void Replace(std::string&,const std::string&,const std::string&);
0011 int SingleReplace(std::string&,const std::string&,const std::string&,int&);
0012 public:
0013 String_Library(int mode);
0014 void InitMakefile(std::string);
0015 void UpdateConfigure(std::string);
0016 int IsFile(std::string &);
0017 void Copy(std::string,std::string);
0018 void AddToCMakefile(std::string,std::string,std::string);
0019 };
0020 }
0021 #endif