Update of /cvsroot/compbench/CompBenchmarks++/Qt-4/Plan
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28413
Added Files:
PlanHolder.cpp PlanHolder.h
Log Message:
First import.
--- NEW FILE: PlanHolder.cpp ---
#include <Plan/PlanHolder.h>
using namespace CQT;
CBM::Plan *plan = 0;
CBM::Plan *CQT::PlanHolderGet(void)
{
if (!plan)
plan=new CBM::Plan();
return(plan);
}
--- NEW FILE: PlanHolder.h ---
#ifndef H_CQT_PLANHOLDER
#define H_CQT_PLANHOLDER
#include <Plan/Plan.h>
namespace CQT {
CBM::Plan *PlanHolderGet(void);
}
#endif
|