1 /*
2  * RVersionInfo.hpp
3  *
4  * Copyright (C) 2021 by RStudio, PBC
5  *
6  * Unless you have received this program directly from RStudio pursuant
7  * to the terms of a commercial license agreement with RStudio, then
8  * this program is licensed to you under the terms of version 3 of the
9  * GNU Affero General Public License. This program is distributed WITHOUT
10  * ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
11  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
12  * AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
13  *
14  */
15 
16 #ifndef R_R_VERSION_INFO_HPP
17 #define R_R_VERSION_INFO_HPP
18 
19 #include <core/r_util/RVersionInfo.hpp>
20 
21 namespace rstudio {
22 namespace r {
23 namespace version_info {
24 
25 // Returns the current R version number (cached)
26 core::r_util::RVersionNumber currentRVersion();
27 
28 } // namespace version_info
29 } // namespace r
30 } // namespace rstudio
31 
32 #endif // R_R_VERSION_INFO_HPP
33