Added: #1440 Class for pipeline project sheet
--HG-- branch : build_pipeline_v3hg/feature/build_pipeline_v3
parent
9417b09f51
commit
80b37c6918
@ -0,0 +1,55 @@
|
||||
/**
|
||||
* \file pipeline_project.cpp
|
||||
* \brief CPipelineProject
|
||||
* \date 2012-03-03 11:31GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CPipelineProject
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE is distributed in the hope that it will be
|
||||
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <nel/misc/types_nl.h>
|
||||
#include "pipeline_project.h"
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
// #include <nel/misc/debug.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
using namespace std;
|
||||
// using namespace NLMISC;
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
CPipelineProject::CPipelineProject(CPipelineWorkspace *workspace, NLGEORGES::UForm *form) : m_Workspace(workspace), m_Form(form)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
CPipelineProject::~CPipelineProject()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
/* end of file */
|
@ -0,0 +1,64 @@
|
||||
/**
|
||||
* \file pipeline_project.h
|
||||
* \brief CPipelineProject
|
||||
* \date 2012-03-03 11:31GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CPipelineProject
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2012 by authors
|
||||
*
|
||||
* This file is part of RYZOM CORE PIPELINE.
|
||||
* RYZOM CORE PIPELINE is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation, either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* RYZOM CORE PIPELINE is distributed in the hope that it will be
|
||||
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with RYZOM CORE PIPELINE; see the file COPYING. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PIPELINE_PIPELINE_PROJECT_H
|
||||
#define PIPELINE_PIPELINE_PROJECT_H
|
||||
#include <nel/misc/types_nl.h>
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
#include <nel/misc/smart_ptr.h>
|
||||
#include <nel/georges/u_form.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
namespace PIPELINE {
|
||||
class CPipelineWorkspace;
|
||||
|
||||
/**
|
||||
* \brief CPipelineProject
|
||||
* \date 2012-03-03 11:31GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* CPipelineProject
|
||||
*/
|
||||
class CPipelineProject
|
||||
{
|
||||
protected:
|
||||
CPipelineWorkspace *m_Workspace;
|
||||
NLMISC::CRefPtr<NLGEORGES::UForm> m_Form;
|
||||
public:
|
||||
CPipelineProject(CPipelineWorkspace *workspace, NLGEORGES::UForm *form);
|
||||
virtual ~CPipelineProject();
|
||||
|
||||
}; /* class CPipelineProject */
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
#endif /* #ifndef PIPELINE_PIPELINE_PROJECT_H */
|
||||
|
||||
/* end of file */
|
Loading…
Reference in New Issue