Same header and footer for all files. Header includes copyright +
[metaproxy-moved-to-github.git] / src / session.cpp
1 /* $Id: session.cpp,v 1.2 2005-10-15 14:09:09 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #include <stdexcept>
8
9 #include "session.hpp"
10 #include <boost/thread/mutex.hpp>
11
12 #include "config.hpp"
13
14 // defining and initializing static members
15 boost::mutex yp2::Session::m_mutex;
16 unsigned long int yp2::Session::m_global_id = 0;
17
18 /*
19  * Local variables:
20  * c-basic-offset: 4
21  * indent-tabs-mode: nil
22  * c-file-style: "stroustrup"
23  * End:
24  * vim: shiftwidth=4 tabstop=8 expandtab
25  */