1 /*
2  * SessionLimits.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 SESSION_LIMITS_HPP
17 #define SESSION_LIMITS_HPP
18 
19 namespace rstudio {
20 namespace core {
21    class Error;
22 }
23 }
24 
25 namespace rstudio {
26 namespace session {
27 namespace modules {
28 namespace limits {
29 
30 core::Error initialize();
31 
32 } // namespace limits
33 } // namespace modules
34 } // namespace session
35 } // namespace rstudio
36 
37 #endif // SESSION_LIMITS_HPP
38