_templateclass.cpp

00001 #include "_templateclass.h"
00002 #include "debug.h"
00003 
00004 extern Debug* dbg;
00005 
00006 using namespace irr;
00007 using namespace core;
00008 using namespace scene;
00009 using namespace video;
00010 
00011 Temp::Temp(IrrlichtDevice* d, stringc filePath)
00012 {
00013     //ctor
00014     dbg->log("create Temp");
00015     device = d;
00016     load(filePath);
00017 }
00018 
00019 Temp::~Temp()
00020 {
00021     //dtor
00022     dbg->log("Temp deleted");
00023 }
00024 
00025 void Temp::load(stringc filePath)
00026 {
00027     if (!device)
00028     {
00029         dbg->log("Temp::load() device==NULL");
00030         return;
00031     }
00032 }

Generated on Sun Dec 2 17:09:57 2007 for Swarm by  doxygen 1.4.6-NO