mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-07 16:51:13 +00:00
Imported Healpix, cfitsio, cosmotool. Added cmake tool to build dependencies (cfitsio, hdf5, netcdf, boost, healpix, gsl, ..). Adjusted CMakeLists.txt
This commit is contained in:
parent
4bfb62f177
commit
51f6798f88
241 changed files with 243806 additions and 0 deletions
26
external/cosmotool/src/miniargs.hpp
vendored
Normal file
26
external/cosmotool/src/miniargs.hpp
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef _MAK_MINIARGS_HPP
|
||||
#define _MAK_MINIARGS_HPP
|
||||
|
||||
namespace CosmoTool
|
||||
{
|
||||
typedef enum
|
||||
{
|
||||
MINIARG_NULL,
|
||||
MINIARG_STRING,
|
||||
MINIARG_INT,
|
||||
MINIARG_DOUBLE,
|
||||
MINIARG_FLOAT,
|
||||
MINIARG_DOUBLE_3D_VECTOR
|
||||
} MiniArgType;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
const char *name;
|
||||
void *data;
|
||||
MiniArgType argType;
|
||||
} MiniArgDesc;
|
||||
|
||||
int parseMiniArgs(int argc, char **argv, MiniArgDesc *desc);
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue