瀏覽代碼

doxygen page for rowiolib

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@38359 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 16 年之前
父節點
當前提交
ccebe0366c
共有 3 個文件被更改,包括 32 次插入2 次删除
  1. 1 1
      lib/grasslib.dox
  2. 3 1
      lib/rowio/Makefile
  3. 28 0
      lib/rowio/rowiolib.dox

+ 1 - 1
lib/grasslib.dox

@@ -95,7 +95,7 @@ from GRASS 5 Programmer's manual) or are simply undocumented.</i>
  - psdriver:    PostScript display driver library - \ref psdriver
  - python:      \ref pythonlib
  - raster:	\ref rasterlib
- - rowio:	Raster row in/out library - \ref rowio
+ - rowio:	\ref rowiolib
  - rst:	Library for interpolation with regularized splines with tension - \ref rst
  - segment:	\ref segmentlib (segment library for segmented raster reading)
  - sites:	Old Sites library, now interfaced to \ref vectorlib - \ref sites

+ 3 - 1
lib/rowio/Makefile

@@ -1,8 +1,10 @@
-
 MODULE_TOPDIR = ../..
 
 LIB_NAME = $(ROWIO_LIBNAME)
 
 include $(MODULE_TOPDIR)/include/Make/Lib.make
+include $(MODULE_TOPDIR)/include/Make/Doxygen.make
 
 default: lib
+
+DOXNAME = rowiolib

+ 28 - 0
lib/rowio/rowiolib.dox

@@ -0,0 +1,28 @@
+/*! \page rowiolib GRASS Row Input/Output Library
+
+by GRASS Development Team (http://grass.osgeo.org)
+
+This library is used for reading/writing raster rows.
+
+TODO: Explain in detail.
+
+\code
+#include <grass/rowio.h>
+\endcode
+
+\section listOfFunctions List of functions
+
+ - Rowio_fileno()
+
+ - Rowio_flush()
+
+ - Rowio_forget()
+
+ - Rowio_get()
+
+ - Rowio_put()
+
+ - Rowio_release()
+
+ - Rowio_setup()
+*/