You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
567 B
32 lines
567 B
#ifndef SOURCEPOS_H
|
|
#define SOURCEPOS_H
|
|
|
|
#include <utils/String8.h>
|
|
#include <stdio.h>
|
|
|
|
using namespace android;
|
|
|
|
class SourcePos
|
|
{
|
|
public:
|
|
String8 file;
|
|
int line;
|
|
|
|
SourcePos(const String8& f, int l);
|
|
SourcePos(const SourcePos& that);
|
|
SourcePos();
|
|
~SourcePos();
|
|
|
|
void error(const char* fmt, ...) const;
|
|
void warning(const char* fmt, ...) const;
|
|
void printf(const char* fmt, ...) const;
|
|
|
|
bool operator<(const SourcePos& rhs) const;
|
|
|
|
static bool hasErrors();
|
|
static void printErrors(FILE* to);
|
|
};
|
|
|
|
|
|
#endif // SOURCEPOS_H
|