]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/parser/builder.hpp
Make Zorglub less unhappy
[vlc] / modules / gui / skins2 / parser / builder.hpp
index e5c6b4c599aa7bd183840ebf0e24bce4f414392c..999c46e97f8764045438f20420aebbd68fcf5f5b 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * builder.hpp
  *****************************************************************************
- * Copyright (C) 2003 VideoLAN
+ * Copyright (C) 2003 the VideoLAN team
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
@@ -47,7 +47,7 @@ class Builder: public SkinObject
 {
     public:
         Builder( intf_thread_t *pIntf, const BuilderData &rData );
-        virtual ~Builder() {}
+        virtual ~Builder();
 
         /// Create a Theme object, ready to use.
         /// Return NULL in case of problem
@@ -90,6 +90,9 @@ class Builder: public SkinObject
 
         /// Function to parse "points" tags
         Bezier *getPoints( const char *pTag ) const;
+
+        /// Image handler (used to load image files)
+        image_handler_t *m_pImageHandler;
 };
 
 #endif