From f7740bbbfda3dfad4995cb6ea27f927427c515d6 Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 23 Feb 2002 01:09:34 +0000 Subject: [PATCH] expcl --- panda/src/pgraph/pandaNode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/pgraph/pandaNode.h b/panda/src/pgraph/pandaNode.h index 64ec9f88fa..b76292344b 100644 --- a/panda/src/pgraph/pandaNode.h +++ b/panda/src/pgraph/pandaNode.h @@ -76,7 +76,7 @@ PUBLISHED: virtual void write(ostream &out, int indent_level) const; private: - class DownConnection { + class EXPCL_PANDA DownConnection { public: INLINE DownConnection(PandaNode *child, int sort); INLINE bool operator < (const DownConnection &other) const; @@ -99,7 +99,7 @@ private: typedef ov_set Up; // This is the data that must be cycled between pipeline stages. - class CData : public CycleData { + class EXPCL_PANDA CData : public CycleData { public: INLINE CData(); CData(const CData ©); @@ -120,7 +120,7 @@ public: // children. This saves a tiny bit of overhead between each step, // by keeping the PipelineCycler open for reading the whole time. // However, it does not protect you from self-modifying loops. - class Children { + class EXPCL_PANDA Children { public: INLINE Children(const PipelineCycler &cycler); INLINE Children(const Children ©);