[ogs-changes] dist/c++/ogs/items/rings Climbing.h,1.1,1.2 Namespace.h,1.1,1.2 Protection.h,1.1,1.2 S
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-04-18 01:41:39
|
Update of /cvsroot/ogs/dist/c++/ogs/items/rings
In directory sc8-pr-cvs1:/tmp/cvs-serv25962/c++/ogs/items/rings
Modified Files:
Climbing.h Namespace.h Protection.h Swimming.h
Log Message:
See C++ ChangeLog (Apr 17) for details.
Index: Climbing.h
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/items/rings/Climbing.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Climbing.h 23 Mar 2003 22:14:36 -0000 1.1
--- Climbing.h 18 Apr 2003 01:41:05 -0000 1.2
***************
*** 48,51 ****
--- 48,58 ----
/**
+ * Create a new ring of climbing.
+ */
+ Climbing::Climbing () {
+ // empty constructor body
+ }
+
+ /**
* Determine the caster level of this magic item.
*
Index: Namespace.h
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/items/rings/Namespace.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Namespace.h 23 Mar 2003 22:14:36 -0000 1.1
--- Namespace.h 18 Apr 2003 01:41:05 -0000 1.2
***************
*** 31,35 ****
* @namespace ogs::items::rings
*
! *
*/
# define OGS_BEGIN_ITEMS_RINGS_NAMESPACE \
--- 31,35 ----
* @namespace ogs::items::rings
*
! * Provides a set of magic rings.
*/
# define OGS_BEGIN_ITEMS_RINGS_NAMESPACE \
Index: Protection.h
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/items/rings/Protection.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Protection.h 23 Mar 2003 22:14:36 -0000 1.1
--- Protection.h 18 Apr 2003 01:41:05 -0000 1.2
***************
*** 71,74 ****
--- 71,84 ----
/**
+ * Create a new ring of protection.
+ *
+ * @param bonus Deflection bonus of ring.
+ */
+ Protection::Protection (Bonus bonus):
+ _modifier (bonus) {
+ // empty constructor body
+ }
+
+ /**
* Determine the caster level of this magic item.
*
Index: Swimming.h
===================================================================
RCS file: /cvsroot/ogs/dist/c++/ogs/items/rings/Swimming.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Swimming.h 23 Mar 2003 22:14:36 -0000 1.1
--- Swimming.h 18 Apr 2003 01:41:05 -0000 1.2
***************
*** 48,51 ****
--- 48,58 ----
/**
+ * Create a new ring of swimming.
+ */
+ Swimming::Swimming () {
+ // empty constructor body
+ }
+
+ /**
* Determine the caster level of this magic item.
*
|