usbloadergx/source/network/URL_List.h

41 lines
978 B
C
Raw Normal View History

/****************************************************************************
* URL List Class
* for USB Loader GX
* by dimok
***************************************************************************/
#ifndef ___URLLIST_H_
#define ___URLLIST_H_
#include "network/networkops.h"
#include "network/http.h"
typedef struct
{
2010-09-24 02:48:03 +02:00
char *URL;
bool direct;
} Link_Info;
class URL_List
{
public:
//!Constructor
//!\param url from where to get the list of links
2010-09-24 02:48:03 +02:00
URL_List(const char *url);
//!Destructor
~URL_List();
//! Get the a filepath of the list
//!\param list index
2010-09-24 02:48:03 +02:00
char * GetURL(int index);
//! Is it a direct URL or just a file or path under the main url
2010-09-24 02:48:03 +02:00
bool IsDirectURL(int index);
//! Get the number of links counted
int GetURLCount();
//! Sort list
void SortList();
protected:
int urlcount;
Link_Info *Links;
};
#endif