Fresco/Berlin/modules/Primitives Transformer.hh,1.3,1.4
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Berlin/modules/Primitives
In directory purcel:/tmp/cvs-serv29174/Primitives
Modified Files:
Transformer.hh
Log Message:
Forgot to put those into the Kit's namespaces.
Index: Transformer.hh
===================================================================
RCS file: /cvs/fresco/Fresco/Berlin/modules/Primitives/Transformer.hh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Transformer.hh 5 Jan 2003 16:21:34 -0000 1.3
+++ Transformer.hh 24 Mar 2003 21:47:10 -0000 1.4
@@ -29,33 +29,33 @@
#include <Berlin/ImplVar.hh>
namespace Berlin {
-namespace PrimitiveKit {
-
-class Transformer : public Allocator
-{
- public:
- Transformer();
- virtual ~Transformer();
- virtual void request(Fresco::Graphic::Requisition &);
- virtual void traverse(Fresco::Traversal_ptr);
- virtual Fresco::Transform_ptr transformation();
- void allocate(Fresco::Tag, const Fresco::Allocation::Info &);
- private:
- Impl_var<TransformImpl> transform;
-};
-
-class BodyTransformer : public Transformer
-{
-public:
- BodyTransformer(Transformer*, unsigned d = 0);
- BodyTransformer(Fresco::Transform_ptr, unsigned d = 0);
- virtual void body(Fresco::Graphic_ptr);
- virtual Fresco::Graphic_ptr body();
-protected:
- unsigned depth;
-};
+ namespace PrimitiveKit {
-} // namespace
+ class Transformer : public Allocator
+ {
+ public:
+ Transformer();
+ virtual ~Transformer();
+ virtual void request(Fresco::Graphic::Requisition &);
+ virtual void traverse(Fresco::Traversal_ptr);
+ virtual Fresco::Transform_ptr transformation();
+ void allocate(Fresco::Tag, const Fresco::Allocation::Info &);
+ private:
+ Impl_var<TransformImpl> transform;
+ };
+
+ class BodyTransformer : public Transformer
+ {
+ public:
+ BodyTransformer(Transformer*, unsigned d = 0);
+ BodyTransformer(Fresco::Transform_ptr, unsigned d = 0);
+ virtual void body(Fresco::Graphic_ptr);
+ virtual Fresco::Graphic_ptr body();
+ protected:
+ unsigned depth;
+ };
+
+ } // namespace
} // namespace
#endif