{ Ask } Question ?
{ FAQ } Help !
{ Video } Tutorials
{ Knowledge } Base
{ ./Basement.cpp }
{ /includes/[Confg & Functions].cpp }
{ /modules/VirtualHost }
{ /modules/wwwFolderStructure }
{ /modules/wwwPHPPreset }
{ /modules/wwwHTMLPreset }
{ /modules/wwwCSSPreset }
{ /modules/wwwJSPreset }
{ /modules/backupFolderStructure }
reference > modules > wwwjspreset > wwwJSPreset.h

      
#ifndef WWWHJSPRESET_H
    #define WWWJSPRESET_H
	
	class wwwJSPreset
	{
	    private:
		
		std::ofstream file;
		
		std::string systemName;
		std::string wwwFolder;
		
	    public:
		
		// --- Constructor and destructors
		
		wwwJSPreset(std::string _systemName, std::string _wwwFolder);
		
		void autoPresetJS(std::string domain);
		
	};//End of the class
	
    #endif
          
 

DEMO