Added: Get temp directory of current project.
--HG-- branch : build_pipeline_v3hg/feature/build_pipeline_v3
parent
90cc3bda2c
commit
8bdfa294eb
@ -1,55 +0,0 @@
|
||||
/**
|
||||
* \file pipeline_plugin.cpp
|
||||
* \brief IPipelinePlugin
|
||||
* \date 2012-02-25 10:27GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* IPipelinePlugin
|
||||
*/
|
||||
|
||||
/*
|
||||
* 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_plugin.h"
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
// #include <nel/misc/debug.h>
|
||||
|
||||
// Project includes
|
||||
|
||||
using namespace std;
|
||||
// using namespace NLMISC;
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
IPipelinePlugin::IPipelinePlugin()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
IPipelinePlugin::~IPipelinePlugin()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
/* end of file */
|
@ -1,63 +0,0 @@
|
||||
/**
|
||||
* \file pipeline_plugin.h
|
||||
* \brief IPipelinePlugin
|
||||
* \date 2012-02-25 10:27GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* IPipelinePlugin
|
||||
*/
|
||||
|
||||
/*
|
||||
* 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_PLUGIN_H
|
||||
#define PIPELINE_PIPELINE_PLUGIN_H
|
||||
#include <nel/misc/types_nl.h>
|
||||
|
||||
// STL includes
|
||||
|
||||
// NeL includes
|
||||
|
||||
// Project includes
|
||||
|
||||
namespace PIPELINE {
|
||||
|
||||
/**
|
||||
* \brief IPipelinePlugin
|
||||
* \date 2012-02-25 10:27GMT
|
||||
* \author Jan Boon (Kaetemi)
|
||||
* A pipeline plugin (dll) exposes multiple process plugins.
|
||||
*/
|
||||
class IPipelinePlugin
|
||||
{
|
||||
protected:
|
||||
// pointers
|
||||
// ...
|
||||
|
||||
// instances
|
||||
// ...
|
||||
public:
|
||||
IPipelinePlugin();
|
||||
virtual ~IPipelinePlugin();
|
||||
}; /* class IPipelinePlugin */
|
||||
|
||||
} /* namespace PIPELINE */
|
||||
|
||||
#endif /* #ifndef PIPELINE_PIPELINE_PLUGIN_H */
|
||||
|
||||
/* end of file */
|
Loading…
Reference in New Issue