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