~ubuntu-branches/ubuntu/precise/boinc/precise

« back to all changes in this revision

Viewing changes to clientgui/LogBOINC.h

Tags: 6.12.8+dfsg-1
* New upstream release.
* Simplified debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Berkeley Open Infrastructure for Network Computing
2
 
// http://boinc.berkeley.edu
3
 
// Copyright (C) 2005 University of California
4
 
//
5
 
// This is free software; you can redistribute it and/or
6
 
// modify it under the terms of the GNU Lesser General Public
7
 
// License as published by the Free Software Foundation;
8
 
// either version 2.1 of the License, or (at your option) any later version.
9
 
//
10
 
// This software is distributed in the hope that it will be useful,
11
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
 
// See the GNU Lesser General Public License for more details.
14
 
//
15
 
// To view the GNU Lesser General Public License visit
16
 
// http://www.gnu.org/copyleft/lesser.html
17
 
// or write to the Free Software Foundation, Inc.,
18
 
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 
20
 
#ifndef _LOGBOINC_H_
21
 
#define _LOGBOINC_H_
22
 
 
23
 
#if defined(__GNUG__) && !defined(__APPLE__)
24
 
#pragma interface "LogBOINC.cpp"
25
 
#endif
26
 
 
27
 
 
28
 
class wxLogBOINC : public wxLogStderr
29
 
{
30
 
    DECLARE_NO_COPY_CLASS(wxLogBOINC)
31
 
 
32
 
public:
33
 
    wxLogBOINC();
34
 
 
35
 
protected:
36
 
    virtual void DoLogString(const wxChar *szString, time_t t);
37
 
};
38
 
 
39
 
 
40
 
#endif
41
 
 
 
1
// This file is part of BOINC.
 
2
// http://boinc.berkeley.edu
 
3
// Copyright (C) 2008 University of California
 
4
//
 
5
// BOINC is free software; you can redistribute it and/or modify it
 
6
// under the terms of the GNU Lesser General Public License
 
7
// as published by the Free Software Foundation,
 
8
// either version 3 of the License, or (at your option) any later version.
 
9
//
 
10
// BOINC is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
13
// See the GNU Lesser General Public License for more details.
 
14
//
 
15
// You should have received a copy of the GNU Lesser General Public License
 
16
// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
#ifndef _LOGBOINC_H_
 
19
#define _LOGBOINC_H_
 
20
 
 
21
#if defined(__GNUG__) && !defined(__APPLE__)
 
22
#pragma interface "LogBOINC.cpp"
 
23
#endif
 
24
 
 
25
 
 
26
class wxLogBOINC : public wxLogStderr
 
27
{
 
28
    DECLARE_NO_COPY_CLASS(wxLogBOINC)
 
29
 
 
30
public:
 
31
    wxLogBOINC();
 
32
 
 
33
protected:
 
34
    virtual void DoLogString(const wxChar *szString, time_t t);
 
35
};
 
36
 
 
37
 
 
38
#endif
 
39