Dave Schuyler 22 years ago
parent
commit
8574aab718

+ 2 - 0
panda/src/express/typedReferenceCount.h

@@ -33,6 +33,8 @@
 //               each time they are needed, so that we can sensibly
 //               each time they are needed, so that we can sensibly
 //               pass around pointers to things which are both
 //               pass around pointers to things which are both
 //               TypedObjects and ReferenceCounters.
 //               TypedObjects and ReferenceCounters.
+//               
+//               See Also TypeObject for detailed instructions.
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 class EXPCL_PANDAEXPRESS TypedReferenceCount : public TypedObject, public ReferenceCount {
 class EXPCL_PANDAEXPRESS TypedReferenceCount : public TypedObject, public ReferenceCount {
 public:
 public:

+ 2 - 0
panda/src/putil/typedWritable.h

@@ -31,6 +31,8 @@ class DatagramIterator;
 //       Class : TypedWritable
 //       Class : TypedWritable
 // Description : Base class for objects that can be written to and
 // Description : Base class for objects that can be written to and
 //               read from Bam files.
 //               read from Bam files.
+//               
+//               See Also TypeObject for detailed instructions.
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 
 
 class EXPCL_PANDA TypedWritable : public TypedObject {
 class EXPCL_PANDA TypedWritable : public TypedObject {

+ 2 - 0
panda/src/putil/typedWritableReferenceCount.h

@@ -33,6 +33,8 @@
 //               each time they are needed, so that we can sensibly
 //               each time they are needed, so that we can sensibly
 //               pass around pointers to things which are both
 //               pass around pointers to things which are both
 //               TypedWritables and ReferenceCounters.
 //               TypedWritables and ReferenceCounters.
+//               
+//               See Also TypeObject for detailed instructions.
 ////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////////////////////////////////
 class EXPCL_PANDA TypedWritableReferenceCount : public TypedWritable, public ReferenceCount {
 class EXPCL_PANDA TypedWritableReferenceCount : public TypedWritable, public ReferenceCount {
 public:
 public: