The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
persist_manager.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2010 - 2016 by Jody Northup
3  Part of the Battle for Wesnoth Project http://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
15 #ifndef PERSIST_MANAGER_HPP_INCLUDED
16 #define PERSIST_MANAGER_HPP_INCLUDED
17 
18 #include <map>
19 #include <string>
20 
21 class persist_context;
22 
24  protected:
25  typedef std::map<std::string,persist_context *> context_map;
26 
28  context_map contexts_;
29  public:
30  bool start_transaction();
31  bool end_transaction();
32  bool cancel_transaction();
33 
35  virtual ~persist_manager();
36 
38 };
39 
40 #endif
context_map contexts_
virtual ~persist_manager()
std::map< std::string, persist_context * > context_map
persist_context & get_context(const std::string &ns)
GLsizei const GLcharARB ** string
Definition: glew.h:4503