RxDock 0.1.0
A fast, versatile, and open-source program for docking ligands to proteins and nucleic acids
Loading...
Searching...
No Matches
Resources.h
1/***********************************************************************
2 * The rDock program was developed from 1998 - 2006 by the software team
3 * at RiboTargets (subsequently Vernalis (R&D) Ltd).
4 * In 2006, the software was licensed to the University of York for
5 * maintenance and distribution.
6 * In 2012, Vernalis and the University of York agreed to release the
7 * program as Open Source software.
8 * This version is licensed under GNU-LGPL version 3.0 with support from
9 * the University of Barcelona.
10 * http://rdock.sourceforge.net/
11 ***********************************************************************/
12
13// Miscellaneous string constants
14
15#ifndef _RBTRESOURCES_H_
16#define _RBTRESOURCES_H_
17
18#include <string>
19
20namespace rxdock {
21
22const std::string IDS_NAME = "RxDock";
23
24const std::string IDS_METADATA_PREFIX = "rxdock.";
25
26const std::string IDS_COPYRIGHT =
27 "The " + IDS_NAME +
28 " molecular docking program is licensed under GNU LGPL version 3.\n" +
29 IDS_NAME +
30 " is maintained by Vedran Miletić, Patrik Nikolić, and Luka Vretenar.\n"
31 "Visit https://rxdock.gitlab.io/ for more information.";
32
33const std::string IDS_PRODUCT = "librxdock.so";
34
35const std::string IDS_VERSION = "0.1.0";
36
37} // namespace rxdock
38
39#endif //_RBTRESOURCES_H_