mmh, there was something missing for assignment 3
[MicroTrace.git] / Light.cxx
diff --git a/Light.cxx b/Light.cxx
new file mode 100644 (file)
index 0000000..ee29a71
--- /dev/null
+++ b/Light.cxx
@@ -0,0 +1,26 @@
+#include "Light.hxx"
+
+Light::Light(Scene* scene)
+  : m_scene(scene)
+{
+}
+
+Light::~Light()
+{
+}
+
+Light::Light()
+  : m_scene(0)
+{
+}
+
+Light::Light(const Light& l)
+{
+  operator=(l);
+}
+
+Light&
+Light::operator=(const Light& )
+{
+  return *this;
+}
This page took 0.027366 seconds and 4 git commands to generate.