« Return to Thread: Implementing GtkTreeModel

Implementing GtkTreeModel

by Matt-239 :: Rate this Message:

Reply to Author | View in Thread

Ok, so I'm trying to create my own class implementing GtkTreeModel to
make it much faster when dealing with thousands of rows. The problem I
have is there is a method called "foreach" that makes PHP blow a gasket
when I try to define it.

class TestTreeModel implements GtkTreeModel
{
        public function foreach($callback_func)
        {
                // do stuff
        }

        // all the other abstract methods are defined properly
}

This will return:

Parse error: syntax error, unexpected T_FOREACH, expecting T_STRING in
foo.php on line xx

Any idea on how to get around this? Thanks!

-Matt


--
PHP-GTK General Mailing List (http://gtk.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

 « Return to Thread: Implementing GtkTreeModel