diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-02-24 23:28:13 +0100 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-02-26 19:06:02 +0200 |
commit | cd5e17cf79c2f1eb896efd0436c103221de446ae (patch) | |
tree | 35617137ebf4886994d8eaf106f7e1ead97eccb0 /core/qthelperfromc.h | |
parent | e2a6b96db8f7c73ad6fca71dc3d943deeda198da (diff) | |
download | subsurface-cd5e17cf79c2f1eb896efd0436c103221de446ae.tar.gz |
Cleanup: Unify qthelper.h and qthelperfromc.h
Since all qt-helpers are defined in qthelper.cpp, there seems to be
no reason to have two include files. By unifying the two files,
duplication and inconsistencies are removed. The C++-only part is
simply compiled away with #ifdefs.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/qthelperfromc.h')
-rw-r--r-- | core/qthelperfromc.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/core/qthelperfromc.h b/core/qthelperfromc.h deleted file mode 100644 index 631596110..000000000 --- a/core/qthelperfromc.h +++ /dev/null @@ -1,31 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0 -#ifndef QTHELPERFROMC_H -#define QTHELPERFROMC_H - -bool getProxyString(char **buffer); -bool canReachCloudServer(); -void updateWindowTitle(); -void subsurface_mkdir(const char *dir); -char *get_file_name(const char *fileName); -void copy_image_and_overwrite(const char *cfileName, const char *path, const char *cnewName); -char *hashstring(char *filename); -bool picture_exists(struct picture *picture); -char *move_away(const char *path); -const char *local_file_path(struct picture *picture); -void savePictureLocal(struct picture *picture, const char *data, int len); -void cache_picture(struct picture *picture); -char *cloud_url(); -char *hashfile_name_string(); -char *picturedir_string(); -const char *subsurface_user_agent(); -enum deco_mode decoMode(); -int parse_seabear_header(const char *filename, char **params, int pnr); -extern const char *get_current_date(); -enum inertgas {N2, HE}; -double cache_value(int tissue, int timestep, enum inertgas gas); -void cache_insert(int tissue, int timestep, enum inertgas gas, double value); -void print_qt_versions(); -void lock_planner(); -void unlock_planner(); - -#endif // QTHELPERFROMC_H |