Problems with templates ???
Serge Iovleff <[email protected]>
| Newsgroups | gmane.comp.documentation.synopsis |
|---|---|
| Organization | Université de Lille 1 |
| Message-ID | <[email protected]> |
I'm working on a project with templates. I'm using javacomments /** and Previous comments //< the result si that : - synopsis does not write any comments - the class Array2D<TYPE> (derivated from Cont2D<TYPE>) diseapear - the inheritance diagram class is false see http://www.iut-info.univ-lille1.fr/~iovleff/pub/Research/html/ here is my makefile for generating the doc : make syndoc maybe can I try other options ? Serge # # Path for the Tcontainer project # Don't Set the src directory # STK_TCONT_SRC_DIR = STK_TCONT_BIN_DIR = ../bin/ STK_TCONT_INC_DIR = ../include/ STK_TCONT_LIB_DIR = ../lib/ STK_TCONT_DOC_DIR = ../doc/ STK_TCONT_HTML_DIR = ../doc/html/ STK_TCONT_LIB_A = $(STK_TCONT_LIB_DIR)STK_Tcont.a # # Files generated by the doc synopsis # STK_TCONT_SYNDOC = $(STK_TCONT_DOC_DIR)STK_Tcontainer.syn STK_TCONT_HTMLDOC = $(STK_TCONT_DOC_DIR)index.html # # header files # INCS = \ STK_Index.h \ STK_Cont.h \ STK_Cell.h \ STK_List.h \ STK_Array2D.h \ STK_Util.h \ STK_Array.h # # Rules for the synaptic doc files # INC_DOCS = $(INCS:%.h=$(STK_TCONT_DOC_DIR)%.h.syn) # # rules for the synaptic files # -Wp,-t means the parser store trailing comments in dummy # -Wp,-b,dir means the parser is using the dir as basename # $(STK_TCONT_DOC_DIR)%.h.syn: $(STK_TCONT_INC_DIR)%.h synopsis -p Cxx -l JavaComments,JavaTags,SSComments,Previous -Wp,-t -Wp,-I$(STK_TCONT_INC_DIR) -Wp,-b,$(STK_TCONT_INC_DIR) -o $@ $< # # Link all synaptic files in a single file # $(STK_TCONT_SYNDOC): $(INC_DOCS) synopsis -l JavaComments,JavaTags,SSComments,Previous -o $(STK_TCONT_SYNDOC) $(INC_DOCS) # # Generate the html documentation # $(STK_TCONT_HTMLDOC) : $(STK_TCONT_SYNDOC) synopsis -f HTML --javadoc -l JavaComments,JavaTags,SSComments,Previous -o $(STK_TCONT_HTML_DIR) $(STK_TCONT_SYNDOC) syndoc: $(STK_TCONT_HTMLDOC)