source: NonGTP/FCollada/FUtils/FULogFile.h @ 964

Revision 964, 528 bytes checked in by igarcia, 18 years ago (diff)
Line 
1/*
2        Copyright (C) 2005-2006 Feeling Software Inc.
3        MIT License: http://www.opensource.org/licenses/mit-license.php
4*/
5
6#ifndef _FU_LOG_FILE_H_
7#define _FU_LOG_FILE_H_
8
9class FUFile;
10
11class FCOLLADA_EXPORT FULogFile
12{
13private:
14        FUFile* file;
15
16public:
17        FULogFile(const char* filename);
18        ~FULogFile();
19
20        void WriteLine(const char* filename, uint32 linenum, const char* message, ...);
21        void WriteLine(const char* message, ...);
22        void WriteLineV(const char* message, va_list& vars);
23
24        void Flush();
25};
26
27#endif // _FU_LOG_FILE_H_
Note: See TracBrowser for help on using the repository browser.