PRIVATE: code convention fixes
This commit is contained in:
parent
750eeeb85f
commit
de9309bb04
2 changed files with 15 additions and 15 deletions
|
@ -240,7 +240,7 @@ Common::Error PrivateEngine::run() {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,24 +56,24 @@ typedef Common::Queue<Common::Rect *> RectQueue;
|
||||||
|
|
||||||
class SymbolMaps {
|
class SymbolMaps {
|
||||||
private:
|
private:
|
||||||
StringQueue stringToDefine;
|
StringQueue stringToDefine;
|
||||||
RectQueue rectToDefine;
|
RectQueue rectToDefine;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
SymbolMap settings;
|
SymbolMap settings;
|
||||||
SymbolMap variables;
|
SymbolMap variables;
|
||||||
SymbolMap cursors;
|
SymbolMap cursors;
|
||||||
SymbolMap locations;
|
SymbolMap locations;
|
||||||
SymbolMap rects;
|
SymbolMap rects;
|
||||||
ConstantList constants;
|
ConstantList constants;
|
||||||
|
|
||||||
NameList variableList;
|
NameList variableList;
|
||||||
NameList locationList;
|
NameList locationList;
|
||||||
|
|
||||||
Symbol *constant(int t, int d, char *s);
|
Symbol *constant(int t, int d, char *s);
|
||||||
Symbol *lookupName(char *n);
|
Symbol *lookupName(char *n);
|
||||||
void installAll(char *n);
|
void installAll(char *n);
|
||||||
void defineSymbol(char *, Common::Rect *);
|
void defineSymbol(char *, Common::Rect *);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End of namespace Private
|
} // End of namespace Private
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue