1 /*
2  * NotebookQueue.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_NOTEBOOK_QUEUE_HPP
17 #define SESSION_NOTEBOOK_QUEUE_HPP
18 
19 #include <shared_core/json/Json.hpp>
20 
21 namespace rstudio {
22 namespace core {
23    class Error;
24 }
25 }
26 
27 namespace rstudio {
28 namespace session {
29 namespace modules {
30 namespace rmarkdown {
31 namespace notebook {
32 
33 enum QueueOperation
34 {
35    QueueAdd    = 0,
36    QueueUpdate = 1,
37    QueueDelete = 2
38 };
39 
40 core::json::Value getDocQueue(const std::string& docId);
41 core::Error initQueue();
42 
43 } // namespace notebook
44 } // namespace rmarkdown
45 } // namespace modules
46 } // namespace session
47 } // namespace rstudio
48 
49 #endif
50