Revision: 7602
          http://playerstage.svn.sourceforge.net/playerstage/?rev=7602&view=rev
Author:   thjc
Date:     2009-04-20 23:55:58 +0000 (Mon, 20 Apr 2009)

Log Message:
-----------
fix up property manager doxygen docs

Modified Paths:
--------------
    code/player/branches/release-2-1-patches/doc/player.dox
    code/player/branches/release-2-1-patches/libplayercore/property.h

Modified: code/player/branches/release-2-1-patches/doc/player.dox
===================================================================
--- code/player/branches/release-2-1-patches/doc/player.dox     2009-04-17 
01:28:18 UTC (rev 7601)
+++ code/player/branches/release-2-1-patches/doc/player.dox     2009-04-20 
23:55:58 UTC (rev 7602)
@@ -460,7 +460,7 @@
 # with spaces.
 
 #INPUT                  = player.txt install.html migration.html 
tutorials.html utils.html clients.html plugin_driver.html configfile.html 
protocol.html ../libplayerxdr/playerxdr.html ../libplayerxdr 
../libplayercore/playercore.h ../server/libplayerdrivers ../libplayertcp 
../libplayercore ../server/drivers/ ../utils/playerv/playerv.c 
../utils/playernav/playernav.c ../utils/playercam/playercam.c 
../utils/playerjoy/playerjoy.cc ../utils/playerprint/playerprint.cc 
../utils/playervcr/playervcr.c ../utils/dgps_server/dgps_server.dox 
../client_libs/libplayerc/doc/mainpage.html 
../client_libs/libplayerc/doc/libplayerc_py.html 
../client_libs/libplayerc/playerc.h ../client_libs/libplayerc++/playerclient.h 
../client_libs/libplayerc++/utility.h ../client_libs/libplayerc++/clientproxy.h 
../client_libs/libplayerc++/playerc++.h 
../client_libs/libplayerc++/playerc++.cc 
../client_libs/libplayerc++/playererror.h
-INPUT                  = player.txt quick_start.txt architecture.txt 
supported_hardware.txt tutorial_devices.txt tutorial_migration.txt 
tutorial_cameras.txt tutorial_automake.txt tutorial_crosscompiling.txt 
tutorial_args.txt tutorial_datalog.txt tutorial_config.txt 
tutorial_interface.txt tutorial_plugins.txt tutorial_maps.txt install.txt 
../server/server.cc ../libplayercore/player.h 
../libplayercore/player_interfaces.h ../libplayercore/error.h 
../libplayercore/configfile.h ../libplayercore/driver.h 
../libplayercore/device.h ../libplayercore/message.h ../server/drivers 
../libplayercore/interface_util.h ../libplayersd/playersd.h 
../libplayertcp/playertcp.h ../libplayerxdr/playerxdr.html 
../libplayerxdr/playerxdr.h ../server/libplayerdrivers/driverregistry.h 
../utils/playerv/playerv.c ../utils/playernav/playernav.c 
../utils/playercam/playercam.c ../utils/playerjoy/playerjoy.cc 
../utils/playerprint/playerprint.cc ../utils/playervcr/playervcr.c 
../utils/dgps_server/dgps_server.dox ../utils/playerwritemap/playerwritemap.c 
../client_libs/libplayerc/playerc.h 
../client_libs/libplayerc/bindings/python/libplayerc_py.html 
../client_libs/libplayerc++/playerclient.h 
../client_libs/libplayerc++/playerc++.h 
../client_libs/libplayerc++/playerc++.cc 
../client_libs/libplayerc++/playererror.h ../client_libs/libplayerc++/utility.h 
../client_libs/libplayerc++/clientproxy.h
+INPUT                  = player.txt quick_start.txt architecture.txt 
supported_hardware.txt tutorial_devices.txt tutorial_migration.txt 
tutorial_cameras.txt tutorial_automake.txt tutorial_crosscompiling.txt 
tutorial_args.txt tutorial_datalog.txt tutorial_config.txt 
tutorial_interface.txt tutorial_plugins.txt tutorial_maps.txt install.txt 
../server/server.cc ../libplayercore/player.h 
../libplayercore/player_interfaces.h ../libplayercore/error.h 
../libplayercore/configfile.h ../libplayercore/driver.h 
../libplayercore/device.h ../libplayercore/message.h ../server/drivers 
../libplayercore/interface_util.h ../libplayersd/playersd.h 
../libplayertcp/playertcp.h ../libplayerxdr/playerxdr.html 
../libplayerxdr/playerxdr.h ../server/libplayerdrivers/driverregistry.h 
../utils/playerv/playerv.c ../utils/playernav/playernav.c 
../utils/playercam/playercam.c ../utils/playerjoy/playerjoy.cc 
../utils/playerprint/playerprint.cc ../utils/playervcr/playervcr.c 
../utils/dgps_server/dgps_server.dox ../utils/playerwritemap/playerwritemap.c 
../client_libs/libplayerc/playerc.h 
../client_libs/libplayerc/bindings/python/libplayerc_py.html 
../client_libs/libplayerc++/playerclient.h 
../client_libs/libplayerc++/playerc++.h 
../client_libs/libplayerc++/playerc++.cc 
../client_libs/libplayerc++/playererror.h ../client_libs/libplayerc++/utility.h 
../client_libs/libplayerc++/clientproxy.h ../libplayercore/property.h
 # If the value of the INPUT tag contains directories, you can use the 
 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
 # and *.h) to filter out the source-files in the directories. If left 

Modified: code/player/branches/release-2-1-patches/libplayercore/property.h
===================================================================
--- code/player/branches/release-2-1-patches/libplayercore/property.h   
2009-04-17 01:28:18 UTC (rev 7601)
+++ code/player/branches/release-2-1-patches/libplayercore/property.h   
2009-04-20 23:55:58 UTC (rev 7602)
@@ -43,7 +43,7 @@
 class ConfigFile;
 class Driver;
 
-// Property base class
+/// Property base class
 class Property
 {
        public:
@@ -70,7 +70,7 @@
 
////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////////////////
 
-// Integer property class
+/// Integer property class
 class IntProperty : public Property
 {
        public:
@@ -98,7 +98,7 @@
 
////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////////////////
 
-// Double property class
+/// Double property class
 class DoubleProperty : public Property
 {
        public:
@@ -126,6 +126,7 @@
 
////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////////////////
 
+/// String Property Class
 class StringProperty : public Property
 {
        public:
@@ -154,6 +155,7 @@
 
////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////////////////
 
+/// Property node structure
 typedef struct PropertyNode
 {
        char *key;
@@ -161,7 +163,7 @@
        struct PropertyNode *next;
 } PropertyNode;
 
-// Property bag class: stores registered properties
+/// Property bag class: stores registered properties
 class PropertyBag
 {
        public:


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to