Files
rk35xx-android14/frameworks/base/tools/aapt/SourcePos.h
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

32 lines
567 B
C++

#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