forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase_cache_fwd.h
More file actions
25 lines (22 loc) · 851 Bytes
/
Copy pathbase_cache_fwd.h
File metadata and controls
25 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <[email protected]>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef CPPCMS_BASE_CACHE_FWD_H
#define CPPCMS_BASE_CACHE_FWD_H
#include <string>
#include <set>
#include <cppcms/defs.h>
#include <booster/intrusive_ptr.h>
#include <cppcms/cstdint.h>
namespace cppcms {
namespace impl {
class base_cache;
inline void intrusive_ptr_add_ref(base_cache *ptr);
inline void intrusive_ptr_release(base_cache *ptr);
} // impl
} //cppcms
#endif