/usr/include/arc/ArcVersion.h is in nordugrid-arc-dev 5.0.5-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | // -*- indent-tabs-mode: nil -*-
#ifndef __ARC_ARCVERSION_H__
#define __ARC_ARCVERSION_H__
/** \defgroup common Common utility classes and functions. */
/// \file ArcVersion.h
/** \addtogroup common
* @{
*/
/** ARC API version */
#define ARC_VERSION "4.2.0"
/** ARC API version number */
#define ARC_VERSION_NUM 0x040200
/** ARC API major version number */
#define ARC_VERSION_MAJOR 4
/** ARC API minor version number */
#define ARC_VERSION_MINOR 2
/** ARC API patch number */
#define ARC_VERSION_PATCH 0
/// Arc namespace contains all core ARC classes.
namespace Arc {
/// Determines ARC HED libraries version at runtime
/**
* ARC also provides pre-processor macros to determine the API version at
* compile time in \ref ArcVersion.h.
* \ingroup common
* \headerfile ArcVersion.h arc/ArcVersion.h
*/
class ArcVersion {
public:
/// Major version number
const unsigned int Major;
/// Minor version number
const unsigned int Minor;
/// Patch version number
const unsigned int Patch;
/// Parses ver and fills major, minor and patch version values
ArcVersion(const char* ver);
};
/// Use this object to obtain current ARC HED version
/// at runtime.
extern const ArcVersion Version;
// Front page for ARC SDK documentation
/**
* \mainpage
* The ARC %Software Development Kit (SDK) is a set of tools that allow
* manipulation of jobs and data in a Grid environment. The SDK is divided
* into a set of <a href="modules.html">modules</a> which take care of
* different aspects of Grid interaction.
*
* In the figure below an overview of the SDK is illustrated, showing
* software components depending on the SDK, supported security standards and
* in particular plugins providing functionality for different index and
* registry services, local information systems, job submission and management
* interfaces, matching and ranking algorithms, data access protocols and
* job description languages.
*
* \image html arcsdk.png
*
* \version The version of the SDK that this documentation refers to can be
* found from #ARC_VERSION. The ARC release corresponding to the SDK version
* can be found using the "SVN tag" column in the table at
* http://www.nordugrid.org/arc/releases/
*
* \section sec Quick Start
* The following code is a minimal example showing how to submit a job to a
* Grid resource using the ARC SDK. For futher examples see the \ref examples
* "list of all examples".
* \include basic_job_submission.cpp
* This code can be compiled with
* \code
* g++ -o submit -I/usr/include/libxml2 `pkg-config --cflags glibmm-2.4` -l arccompute submit.cpp
* \endcode
*
* And this example shows how to copy a file to or from the Grid:
* \include simple_copy.cpp
*
* This example can be compiled with
* \code
* g++ -o copy -I/usr/include/libxml2 `pkg-config --cflags glibmm-2.4` -l arcdata copy.cpp
* \endcode
*/
// Page listing all examples
/**
* \page examples List of all examples
* %Job submission and management
* - \subpage basicjobsubmission
* - \subpage jobfiltering
* - \subpage jobstatus
* - \subpage joblistretrieval
* - \subpage retrievingresults
* - \subpage servicediscovery
*
* Data management
* - \subpage copyfile
* - \subpage partialcopy
* - \subpage exampledmc
* - \subpage dtrgenerator
*
* \page basicjobsubmission Basic %Job Submission
* \section cpp C++
* \include basic_job_submission.cpp
* \section py Python
* \include basic_job_submission.py
* \section java Java
* \include BasicJobSubmission.java
*
* \page jobfiltering %Job Filtering
* \include job_filtering.py
*
* \page jobstatus %Job Status
* \include job_status.py
*
* \page joblistretrieval %Job List Retrieval
* \include joblist_retrieval.py
*
* \page retrievingresults Retrieving Results
* \include retrieving_results.py
*
* \page servicediscovery Service Discovery
* \include service_discovery.py
*
* \page copyfile Copy File
* \section cpp C++
* \include simple_copy.cpp
* \section py Python
* \include copy_file.py
*
* \page partialcopy Partial File Copy
* \section cpp C++
* \include partial_copy.cpp
* \section py Python
* \include partial_copy.py
*
* \page exampledmc Example Protocol %Plugin
* \include DataPointMyProtocol.cpp
*
* \page dtrgenerator DTR Generator
* \section cpp C++
* Generator.cpp
* \include Generator.cpp
* Generator.h
* \include Generator.h
* generator-main.cpp
* \include generator-main.cpp
* \section py Python
* \include dtr_generator.py
* \section java Java
* \include DTRGenerator.java
*/
} // namespace Arc
/** @} */
#endif // __ARC_ARCVERSION_H__
|