tgl_filedef_file_visitor : visit

Any other method of any other object can call this method. This is called 'public' access.

The data-type returned is "booltype"; Not sure.

This method is contained in the object "tgl_filedef_file_visitor".

The method takes the following arguments:

obj : object_baseptrtype

Not sure.

This method is overridden from an abstract method with the same signature found in the object visitor.

Implementations

C++

The files "schema/schema_object.hpp" and "tgl_filedef.hpp" are included.

	// we skip over the base object.
	if (obj == _base)
		return true;
		
	ph::tools::schema::schema_object *o = 
		dynamic_cast<ph::tools::schema::schema_object *>(obj);
	if (!o)
		return true;
	
	// we skip over ignored objects.
	if (_ignoreset.find(o->name()) != _ignoreset.end())
		return true;
		
	return _filedef->process(o, 
		_filedef->make_filename(_path, o->get("classname")), true);
				

Generated: Wed Apr 5 23:53:16 EST 2006 using "xsltproc ... docbook.xsl". Copyright (c) 2003, 2004, 2005; Paul Hamilton; pHamtec P/L. Use, modification, and distribution is provided free of any limitations.