From: Justin Seyster Date: Tue, 12 Oct 2010 22:11:12 +0000 (-0400) Subject: Added example plug-in to the documentation. X-Git-Tag: release-v1.0~28^2~16 X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=44a19a11aa8d513799a75be63ee9ad8a35ba120c;p=interaspect.git Added example plug-in to the documentation. --- diff --git a/Doxyfile b/Doxyfile index bb6cc55..65e057c 100644 --- a/Doxyfile +++ b/Doxyfile @@ -625,7 +625,7 @@ EXCLUDE_SYMBOLS = aop_argkind # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = +EXAMPLE_PATH = workspace # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff --git a/src/aop-doxy-main.c b/src/aop-doxy-main.c index bd618cc..2432304 100644 --- a/src/aop-doxy-main.c +++ b/src/aop-doxy-main.c @@ -205,3 +205,15 @@ * unnecessarily consume memory. InterAspect cleans up all aop_type * objects for you when the compiler exits. */ + +/** + * \example hello.c + * A "hello world" example that shows the minimum setup necessary to + * instrument every function entry. + */ + +/** + * \example advice_header.c + * An example of a plug-in that automatically generates a header file + * with prototypes for advice functions. + */