update copyright date
[gnash.git] / cygnal / serverSO.cpp
blob726ba8e5790ed59c6c59406ecc129928e5047bda
1 // rc.cpp: "Run Command" configuration file, for Gnash.
2 //
3 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
4 // 2011 Free Software Foundation, Inc
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 // This is generated by autoconf
22 #ifdef HAVE_CONFIG_H
23 # include "gnashconfig.h"
24 #endif
26 #include "StringPredicates.h"
27 #include "log.h"
28 #include "serverSO.h"
30 #ifdef HAVE_PWD_H
31 # include <pwd.h>
32 #endif
34 #include <sys/types.h>
35 #include <boost/cstdint.hpp>
37 #include <cctype> // for toupper
38 #include <string>
39 #include <vector>
40 #include <iostream>
41 #include <fstream>
43 using namespace std;
44 using namespace gnash;
46 /// \namespace cygnal
47 /// This namespace is for all the Cygnal specific classes.
48 namespace cygnal {
51 ServerSO::ServerSO()
53 // GNASH_REPORT_FUNCTION;
56 //Never destroy (TODO: add a destroyDefaultInstance)
57 ServerSO::~ServerSO()
59 // GNASH_REPORT_FUNCTION;
62 /// \brief Dump the internal data of this class in a human readable form.
63 /// @remarks This should only be used for debugging purposes.
64 void
65 ServerSO::dump(std::ostream& os) const
67 os << endl << "Dump ServerSO:" << endl;
71 } // end of namespace cygnal
73 // local Variables:
74 // mode: C++
75 // indent-tabs-mode: t
76 // End: