-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDateinamensteile_Bestimmen.h
34 lines (27 loc) · 1.01 KB
/
Dateinamensteile_Bestimmen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Dateinamensteile_Bestimmen.h
*
* Copyright (c) 2011-2017 Stefan Bender
* Copyright (c) 2010-2011 Martin Langowski
*
* Initial version created on: 23.09.2010
* Author: Martin Langowski
*
* This file is part of scia_retrieval_2d
*
* scia_retrieval_2d is free software: you can redistribute it or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
* See accompanying COPYING.GPL2 file or http://www.gnu.org/licenses/gpl-2.0.html.
*/
#ifndef DATEINAMENSTEILE_BESTIMMEN_HH_
#define DATEINAMENSTEILE_BESTIMMEN_HH_
// Sinn dieser Funktion ist es im Batchprozess die richtigen Dateinamen
// zu bestimmen die erzeugt werden sollen
// xxxxx Orbit_ID
// yyyymmdd_hhmm Das Datum der ersten Limbdatei im Orbit
#include<string>
std::string sb_basename(std::string filename);
std::string xxxxx_Bestimmen(std::string Orbitlistenpfad);
std::string yyyymmdd_hhmm_Bestimmen(std::string Name_erste_Limbdatei);
#endif /* DATEINAMENSTEILE_BESTIMMEN_H_ */