OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
coCoverConfig.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef CO_COVERCONFIG
9 #define CO_COVERCONFIG
10 
24 #include <util/coExport.h>
25 #include <string>
26 namespace opencover
27 {
28 class COVEREXPORT coCoverConfig
29 {
30 private:
31  coCoverConfig();
32  virtual ~coCoverConfig();
33 
34 public:
35  static bool getScreenConfigEntry(int pos, std::string &name, int *hsize, int *vsize, int *x, int *y, int *z, float *h, float *p, float *r);
36 };
37 }
38 #endif
Definition: coCoverConfig.h:28