CppCMS
base_cache_fwd.h
1 //
3 // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
4 //
5 // See accompanying file COPYING.TXT file for licensing details.
6 //
8 #ifndef CPPCMS_BASE_CACHE_FWD_H
9 #define CPPCMS_BASE_CACHE_FWD_H
10 
11 #include <string>
12 #include <set>
13 #include <cppcms/defs.h>
14 #include <booster/intrusive_ptr.h>
15 #include <cppcms/cstdint.h>
16 
17 namespace cppcms {
18  namespace impl {
19  class base_cache;
20  inline void intrusive_ptr_add_ref(base_cache *ptr);
21  inline void intrusive_ptr_release(base_cache *ptr);
22  } // impl
23 } //cppcms
24 
25 #endif
This is the namespace where all CppCMS functionality is placed.
Definition: application.h:19