WSL/SLF GitLab Repository
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
snow-models
meteoio
Commits
504288ba
Commit
504288ba
authored
Sep 29, 2015
by
Mathias Bavay
Browse files
Keeping Clang happy... macros should not start with "__"...
parent
22976fa3
Changes
89
Hide whitespace changes
Inline
Side-by-side
meteoio/Config.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
CONFIGREADER_H
__
#define
__
CONFIGREADER_H
__
#ifndef CONFIGREADER_H
#define CONFIGREADER_H
#include
<meteoio/IOUtils.h>
#include
<meteoio/FileUtils.h>
...
...
meteoio/DataGenerator.h
View file @
504288ba
...
...
@@ -16,8 +16,8 @@
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
DATAGENERATOR_H
__
#define
__
DATAGENERATOR_H
__
#ifndef DATAGENERATOR_H
#define DATAGENERATOR_H
#include
<meteoio/Config.h>
#include
<meteoio/dataClasses/MeteoData.h>
...
...
meteoio/FileUtils.h
View file @
504288ba
...
...
@@ -14,8 +14,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
FILEUTILS_H
__
#define
__
FILEUTILS_H
__
#ifndef FILEUTILS_H
#define FILEUTILS_H
#include
<sstream>
#include
<string>
...
...
meteoio/GeneratorAlgorithms.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
GENERATORALGORITHMS_H
__
#define
__
GENERATORALGORITHMS_H
__
#ifndef GENERATORALGORITHMS_H
#define GENERATORALGORITHMS_H
#include
<meteoio/dataClasses/MeteoData.h>
#include
<meteoio/meteoLaws/Sun.h>
...
...
meteoio/Graphics.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
GRAPHICS_H
__
#define
__
GRAPHICS_H
__
#ifndef GRAPHICS_H
#define GRAPHICS_H
#include
<meteoio/dataClasses/Array2D.h>
...
...
meteoio/GridsManager.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
GRIDSMANAGER_H
__
#define
__
GRIDSMANAGER_H
__
#ifndef GRIDSMANAGER_H
#define GRIDSMANAGER_H
#include
<meteoio/DataGenerator.h>
#include
<meteoio/dataClasses/Buffer.h>
...
...
meteoio/IOExceptions.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
IOEXCEPTIONS_H
__
#define
__
IOEXCEPTIONS_H
__
#ifndef IOEXCEPTIONS_H
#define IOEXCEPTIONS_H
#include
<exception>
#include
<string>
...
...
@@ -167,6 +167,4 @@ class MIO_API NoAvailableDataException : public IOException
inline
void
printdebug
(...)
{}
#endif
#endif
/*__IOException_H__*/
#endif
meteoio/IOHandler.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
IOHANDLER_H
__
#define
__
IOHANDLER_H
__
#ifndef IOHANDLER_H
#define IOHANDLER_H
#include
<meteoio/IOInterface.h>
#include
<meteoio/IOExceptions.h>
...
...
meteoio/IOInterface.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
IOINTERFACE_H
__
#define
__
IOINTERFACE_H
__
#ifndef IOINTERFACE_H
#define IOINTERFACE_H
#include
<meteoio/dataClasses/Array1D.h>
#include
<meteoio/dataClasses/Array2D.h>
...
...
meteoio/IOManager.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
IOMANAGER_H
__
#define
__
IOMANAGER_H
__
#ifndef IOMANAGER_H
#define IOMANAGER_H
#include
<meteoio/DataGenerator.h>
#include
<meteoio/Meteo2DInterpolator.h>
...
...
meteoio/IOUtils.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
IOUTILS_H
__
#define
__
IOUTILS_H
__
#ifndef IOUTILS_H
#define IOUTILS_H
#include
<iostream>
#include
<string>
...
...
meteoio/InterpolationAlgorithms.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
INTERPOLATIONALGORITHMS_H
__
#define
__
INTERPOLATIONALGORITHMS_H
__
#ifndef INTERPOLATIONALGORITHMS_H
#define INTERPOLATIONALGORITHMS_H
#include
<meteoio/dataClasses/DEMObject.h>
#include
<meteoio/dataClasses/MeteoData.h>
...
...
meteoio/MainPage.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
MAINPAGE_H
__
#define
__
MAINPAGE_H
__
#ifndef MAINPAGE_H
#define MAINPAGE_H
namespace
mio
{
//groups
...
...
meteoio/MathOptim.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
MATHOPTIM_H
__
#define
__
MATHOPTIM_H
__
#ifndef MATHOPTIM_H
#define MATHOPTIM_H
#include
<stdint.h>
#include
<cmath>
...
...
meteoio/Meteo1DInterpolator.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
METEO1DINTERPOLATOR_H
__
#define
__
METEO1DINTERPOLATOR_H
__
#ifndef METEO1DINTERPOLATOR_H
#define METEO1DINTERPOLATOR_H
#include
<meteoio/dataClasses/MeteoData.h>
#include
<meteoio/dataClasses/StationData.h>
...
...
meteoio/Meteo2DInterpolator.h
View file @
504288ba
...
...
@@ -16,8 +16,8 @@
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
METEO2DINTERPOLATOR_H
__
#define
__
METEO2DINTERPOLATOR_H
__
#ifndef METEO2DINTERPOLATOR_H
#define METEO2DINTERPOLATOR_H
#include
<meteoio/TimeSeriesManager.h>
#include
<meteoio/Config.h>
...
...
meteoio/MeteoIO.h
View file @
504288ba
...
...
@@ -16,8 +16,8 @@
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
METEOIO_H
__
#define
__
METEOIO_H
__
#ifndef METEOIO_H
#define METEOIO_H
#ifdef _MSC_VER
//VC++ complains that it can not generate an assignment operator
...
...
meteoio/MeteoProcessor.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
METEOPROCESSOR_H
__
#define
__
METEOPROCESSOR_H
__
#ifndef METEOPROCESSOR_H
#define METEOPROCESSOR_H
#include
<meteoio/dataClasses/MeteoData.h>
#include
<meteoio/dataClasses/StationData.h>
...
...
meteoio/ResamplingAlgorithms.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
RESAMPLINGALGORITHMS_H
__
#define
__
RESAMPLINGALGORITHMS_H
__
#ifndef RESAMPLINGALGORITHMS_H
#define RESAMPLINGALGORITHMS_H
#include
<meteoio/dataClasses/MeteoData.h>
#include
<meteoio/dataClasses/StationData.h>
...
...
meteoio/ResamplingAlgorithms2D.h
View file @
504288ba
...
...
@@ -15,8 +15,8 @@
You should have received a copy of the GNU Lesser General Public License
along with MeteoIO. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef
__
RESAMPLINGALGORITHMS2D_H
__
#define
__
RESAMPLINGALGORITHMS2D_H
__
#ifndef RESAMPLINGALGORITHMS2D_H
#define RESAMPLINGALGORITHMS2D_H
#include
<meteoio/dataClasses/Grid2DObject.h>
#include
<iostream>
...
...
Prev
1
2
3
4
5
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment