util.h 591 Bytes
#using <System.dll>
#using <System.Xml.dll>

#include <iostream>
#include <string>
#include <vector>


using namespace std;
using namespace System;

using namespace System::Net;
using namespace System::IO;
using namespace System::Xml;








 public ref class  Util {

 	private:
 		static string clrStringTostring(String^ strIn);
 		static vector <string> localVersion(void);
 		
 	public:
 		static bool down;
 		static WebClient^ myWebClient;

 		Util();

 		bool downloading;
 		
 	   static bool checkNet(void);
 	   static vector <string> checkVersion(bool atualize);
 	   

 };