--- a/imgtools/romtools/rofsbuild/r_romnode.h Wed Nov 17 13:47:08 2010 +0800
+++ b/imgtools/romtools/rofsbuild/r_romnode.h Wed Nov 17 14:05:07 2010 +0800
@@ -20,6 +20,8 @@
#define __R_ROMNODE_H__
#include <fstream>
+#include <vector>
+#include <string>
#include <e32std.h>
#include "rofs.h"
#include "e32image.h"
@@ -123,7 +125,8 @@
TInt GetFullName(char* aBuf, TBool aIgnoreHiddenAttrib = EFalse) const;
static void InitializeCount();
// Accessor Function.
- inline TRomNode* GetParent() const { return iParent; }
+ inline TRomNode* GetParent() const { return iParent; }
+ void FlushLogMessages();
private:
void Remove(TRomNode* aChild);
@@ -209,6 +212,7 @@
public:
char *iName;
char *iFileName;
+ std::vector<std::string> iLogMessages;
TRomBuilderEntry* iNext;
TRomBuilderEntry* iNextInArea;