~glcompbench-dev/glcompbench/glcompbench-package

« back to all changes in this revision

Viewing changes to src/log.h

  • Committer: Alexandros Frantzis
  • Date: 2012-02-16 12:28:07 UTC
  • mfrom: (1.1.8)
  • Revision ID: alexandros.frantzis@linaro.org-20120216122807-emo26ljamsblpbyr
New upstream release 2012.02.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2011 Linaro Limited
3
 
 *
4
 
 * This file is part of glcompbench.
5
 
 *
6
 
 * glcompbench 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
 
 * glcompbench 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.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with glcompbench.  If not, see <http://www.gnu.org/licenses/>.
18
 
 *
19
 
 * Authors:
20
 
 *  Alexandros Frantzis <alexandros.frantzis@linaro.org>
21
 
 *  Jesse Barker <jesse.barker@linaro.org>
22
 
 */
23
 
 
24
 
#ifndef LOG_H_
25
 
#define LOG_H_
26
 
 
27
 
class Log
28
 
{
29
 
public:
30
 
    static void info(const char *fmt, ...);
31
 
    static void debug(const char *fmt, ...);
32
 
    static void error(const char *fmt, ...);
33
 
};
34
 
 
35
 
#endif /* LOG_H_ */