gmio_support: rename files for better consistency

This commit is contained in:
Hugues Delorme 2015-04-02 10:27:51 +02:00
parent 306916327d
commit d36be934aa
6 changed files with 15 additions and 15 deletions

View File

@ -166,12 +166,12 @@ install(FILES ${C_LIBSTL_HEADERS} DESTINATION include/gmio_stl)
install(FILES src/gmio_support/support_global.h DESTINATION include/gmio_support)
# Qt support
install(FILES src/gmio_support/qt_stream.h DESTINATION include/gmio_support)
install(FILES src/gmio_support/qt_stream.cpp DESTINATION src/gmio_support)
install(FILES src/gmio_support/stream_qt.h DESTINATION include/gmio_support)
install(FILES src/gmio_support/stream_qt.cpp DESTINATION src/gmio_support)
# OpenCASCADE support
install(FILES src/gmio_support/occ_libstl.h DESTINATION include/gmio_support)
install(FILES src/gmio_support/occ_libstl.cpp DESTINATION src/gmio_support)
install(FILES src/gmio_support/stl_occ.h DESTINATION include/gmio_support)
install(FILES src/gmio_support/stl_occ.cpp DESTINATION src/gmio_support)
# Installs for target
add_library(gmio ${ALL_SRC_FILES})

View File

@ -4,7 +4,7 @@
#include <gmio_core/error.h>
#include <gmio_stl/stl_io.h>
#include <gmio_support/occ_libstl.h>
#include <gmio_support/stl_occ.h>
#include "../commons/bench_tools.h"

View File

@ -13,7 +13,7 @@
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
****************************************************************************/
#include <gmio_support/occ_libstl.h>
#include <gmio_support/stl_occ.h>
#include <cstring>
#include <StlMesh_Mesh.hxx>

View File

@ -13,12 +13,12 @@
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
****************************************************************************/
/*! \file occ_libstl.h
/*! \file stl_occ.h
* Support of OpenCascade's StlMesh_Mesh
*/
#ifndef GMIO_SUPPORT_OCC_LIBSTL_H
#define GMIO_SUPPORT_OCC_LIBSTL_H
#ifndef GMIO_SUPPORT_STL_OCC_H
#define GMIO_SUPPORT_STL_OCC_H
#include "support_global.h"
#include "../gmio_stl/stl_mesh.h"
@ -81,4 +81,4 @@ void gmio_stl_set_occmesh_creator(
GMIO_LIBSUPPORT_EXPORT
gmio_stl_mesh_creator gmio_stl_occmesh_creator(const Handle_StlMesh_Mesh& mesh);
#endif /* GMIO_SUPPORT_OCC_LIBSTL_H */
#endif /* GMIO_SUPPORT_STL_OCC_H */

View File

@ -13,7 +13,7 @@
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
****************************************************************************/
#include <gmio_support/qt_stream.h>
#include <gmio_support/stream_qt.h>
#include <QtCore/QFile>
#include <QtCore/QIODevice>

View File

@ -13,12 +13,12 @@
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
****************************************************************************/
/*! \file qt_stream.h
/*! \file stream_qt.h
* Support of Qt's QIODevice (requires at least Qt4)
*/
#ifndef GMIO_SUPPORT_QT_STREAM_H
#define GMIO_SUPPORT_QT_STREAM_H
#ifndef GMIO_SUPPORT_STREAM_QT_H
#define GMIO_SUPPORT_STREAM_QT_H
#include "support_global.h"
#include "../gmio_core/stream.h"
@ -32,4 +32,4 @@ QT_END_NAMESPACE
GMIO_LIBSUPPORT_EXPORT
gmio_stream_t gmio_stream_qiodevice(QT_PREPEND_NAMESPACE(QIODevice)* device);
#endif /* GMIO_SUPPORT_QT_STREAM_H */
#endif /* GMIO_SUPPORT_STREAM_QT_H */