forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging.h
More file actions
19 lines (17 loc) · 687 Bytes
/
Copy pathlogging.h
File metadata and controls
19 lines (17 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef CPPCMS_IMPL_LOGGING_H
#define CPPCMS_IMPL_LOGGING_H
#include <cppcms/defs.h>
namespace cppcms {
namespace json { class value; }
namespace impl {
CPPCMS_API void setup_logging(json::value const &);
}
}
#endif