//genMethods "-g" "-t" "Graph*" "-h" "Container" "-I" "LINK/basic/Container.h" "-I" "LINK/graph/Graph.h" "-d" "graph" 

#include <stk.h>
#include <LINK/stkWrapper/LINK_STk.h>

#include <LINK/basic/Container.h>

#include <LINK/graph/Graph.h>

#include <LINK/stkWrapper/Wrapper.h>
#include <LINK/stkWrapper/Register.h>


typedef Graph* _Graph_;
typedef Container<Graph* > _Container_Graph__;

#define _Container_Graph__DATA(x) ((Container<Graph* >*) (EXTDATA(x)))
#define _Container_Graph__IS_DATA(x) (TYPEP(x, tc_CXXwrapper) && \
		TYPEP(STk_slot_ref(x,val_scm), tc_CXXwrapper) && \
		(EXTID(STk_slot_ref(x,val_scm)) == Wrapper<Container<Graph* > >::type))
#define _Container_Graph__ISNT_DATA(x) (!IS_DATA(x))

#define _Container_Graph__CXX_DATA(x) (*(Container<Graph* >*) (EXTDATA(VAL(x))))
#define _Container_Graph__CXX_IS_DATA(x) (INSTANCEP(x) && \
		TYPEP(STk_slot_ref(x,val_scm), tc_CXXwrapper) && \
		(EXTID(STk_slot_ref(x,val_scm)) == Wrapper<Container<Graph* > >::type))
#define _Container_Graph__CXX_ISNT_DATA(x) (!CXX_IS_DATA(x))



// define your new methods above 
// and register them using STk_add_new_cpp_primitive() below

void genExtra_Container_Graph__Methods() {}

