Skip to content
Snippets Groups Projects
Commit 0a1e8ac3 authored by Marco Biasini's avatar Marco Biasini
Browse files

remove version.{hh,cc} from img

parent 817f1745
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,6 @@ util.cc ...@@ -76,7 +76,6 @@ util.cc
module_config.hh module_config.hh
value_util.hh value_util.hh
vecmat.hh vecmat.hh
version.hh
mask_base_fw.hh mask_base_fw.hh
mask_base.hh mask_base.hh
composite_mask.hh composite_mask.hh
......
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2010 by the OpenStructure authors
// Copyright (C) 2003-2010 by the IPLT authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library 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 Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
/*
versioning info
Author: Ansgar Philippsen
*/
#include "version.hh"
#include <sstream>
namespace ost { namespace img {
String GetVersion()
{
std::ostringstream str;
str << VERSION ;
return str.str();
}
}} // ns
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2010 by the OpenStructure authors
// Copyright (C) 2003-2010 by the IPLT authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library 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 Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
/*
versioning info
Author: Ansgar Philippsen
*/
#ifndef IMG_VERSION_H
#define IMG_VERSION_H
#include <ost/img/module_config.hh>
namespace ost { namespace img {
DLLEXPORT_OST_IMG_BASE String GetVersion();
}} // namespace img
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment