Year 2007.
[metaproxy-moved-to-github.git] / src / session.cpp
1 /* $Id: session.cpp,v 1.5 2007-01-25 14:05:54 adam Exp $
2    Copyright (c) 2005-2007, Index Data.
3
4    See the LICENSE file for details
5  */
6
7 #include <stdexcept>
8
9 #include "session.hpp"
10 #include <boost/thread/mutex.hpp>
11
12 #include "config.hpp"
13
14 namespace mp = metaproxy_1;
15
16 // defining and initializing static members
17 boost::mutex mp::Session::m_mutex;
18 unsigned long int mp::Session::m_global_id = 0;
19
20 /*
21  * Local variables:
22  * c-basic-offset: 4
23  * indent-tabs-mode: nil
24  * c-file-style: "stroustrup"
25  * End:
26  * vim: shiftwidth=4 tabstop=8 expandtab
27  */