13 lines
		
	
	
		
			333 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			333 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2010 Anton Gorenko.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: namespaces sequences ;
 | 
						|
IN: gobject-introspection.common
 | 
						|
 | 
						|
SYMBOL: current-namespace-name
 | 
						|
 | 
						|
SYMBOL: implement-structs
 | 
						|
implement-structs [ V{ } ] initialize
 | 
						|
 | 
						|
: implement-struct? ( c-type -- ? )
 | 
						|
    implement-structs get-global member? ;
 |