aboutsummaryrefslogtreecommitdiff
path: root/lib/network/http_dyn.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-02-27 02:20:31 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-02-27 02:20:31 +0000
commitdba614edd2aad3c17e244914eaef3809d8300cb1 (patch)
tree382782ddff50bf88e421d933b13e35b9e5682cff /lib/network/http_dyn.h
parent1cdf6cb021fcaa6548b90ba7b6765cf1e8b8b37b (diff)
downloadenigma2-dba614edd2aad3c17e244914eaef3809d8300cb1.tar.gz
enigma2-dba614edd2aad3c17e244914eaef3809d8300cb1.zip
- hopefully fixed some python/refcount stuff (__deref__ is still evil!)
- first work on skin support, not really far - improved infobar - deletes components when destroying screens - fixed elistbox and component - add ability to change bouqet - real query parser still unfinished
Diffstat (limited to 'lib/network/http_dyn.h')
-rw-r--r--lib/network/http_dyn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/network/http_dyn.h b/lib/network/http_dyn.h
index 61116409..24e4dba1 100644
--- a/lib/network/http_dyn.h
+++ b/lib/network/http_dyn.h
@@ -5,7 +5,7 @@
class eHTTPDyn: public eHTTPDataSource
{
- DECLARE_REF;
+ DECLARE_REF(eHTTPDyn);
private:
std::string result;
int wptr, size;
@@ -17,11 +17,11 @@ public:
class eHTTPDynPathResolver: public iHTTPPathResolver
{
- DECLARE_REF;
+ DECLARE_REF(eHTTPDynPathResolver);
private:
- struct eHTTPDynEntry
+ struct eHTTPDynEntry: public iObject
{
- DECLARE_REF;
+ DECLARE_REF(eHTTPDynEntry);
public:
std::string request, path;
std::string (*function)(std::string request, std::string path, std::string opt, eHTTPConnection *content);