speedup a little the parser by converting gccXML ID attributes to numbers, instead of storing them as strings; remove 2nd argument to GetAttribute() calls
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52717 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
#include "wx/cmdline.h"
|
#include "wx/cmdline.h"
|
||||||
#include "wx/textfile.h"
|
#include "wx/textfile.h"
|
||||||
|
#include "wx/stopwatch.h" // for wxGetLocalTime
|
||||||
#include "xmlparser.h"
|
#include "xmlparser.h"
|
||||||
|
|
||||||
// global verbosity flag
|
// global verbosity flag
|
||||||
|
@@ -24,6 +24,7 @@
|
|||||||
#include "wx/arrimpl.cpp"
|
#include "wx/arrimpl.cpp"
|
||||||
#include "wx/dynarray.h"
|
#include "wx/dynarray.h"
|
||||||
#include "wx/filename.h"
|
#include "wx/filename.h"
|
||||||
|
|
||||||
#include "xmlparser.h"
|
#include "xmlparser.h"
|
||||||
|
|
||||||
#define PROGRESS_RATE 1000 // each PROGRESS_RATE nodes processed print a dot
|
#define PROGRESS_RATE 1000 // each PROGRESS_RATE nodes processed print a dot
|
||||||
@@ -342,22 +343,25 @@ bool wxXmlInterface::CheckParseResults() const
|
|||||||
#define ATTRIB_POINTER 4
|
#define ATTRIB_POINTER 4
|
||||||
#define ATTRIB_ARRAY 8
|
#define ATTRIB_ARRAY 8
|
||||||
|
|
||||||
|
#define GCCXML_BASE 35
|
||||||
|
|
||||||
class toResolveTypeItem
|
class toResolveTypeItem
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
toResolveTypeItem() { attribs=0; }
|
toResolveTypeItem() { attribs=0; }
|
||||||
toResolveTypeItem(const wxString& namestr, int attribint)
|
toResolveTypeItem(unsigned int refID, unsigned int attribint)
|
||||||
: ref(namestr), attribs(attribint) {}
|
: ref(refID), attribs(attribint) {}
|
||||||
|
|
||||||
wxString ref;
|
unsigned long ref, attribs;
|
||||||
int attribs;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
WX_DECLARE_STRING_HASH_MAP( toResolveTypeItem, wxToResolveTypeHashMap );
|
WX_DECLARE_HASH_MAP( unsigned long, toResolveTypeItem,
|
||||||
|
wxIntegerHash, wxIntegerEqual,
|
||||||
|
wxToResolveTypeHashMap );
|
||||||
#else
|
#else
|
||||||
#include <map>
|
#include <map>
|
||||||
typedef std::map<wxString, toResolveTypeItem> wxToResolveTypeHashMap;
|
typedef std::map<unsigned long, toResolveTypeItem> wxToResolveTypeHashMap;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool wxXmlGccInterface::Parse(const wxString& filename)
|
bool wxXmlGccInterface::Parse(const wxString& filename)
|
||||||
@@ -381,8 +385,8 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
|
|
||||||
wxToResolveTypeHashMap toResolveTypes;
|
wxToResolveTypeHashMap toResolveTypes;
|
||||||
wxArrayString arrMemberIds;
|
wxArrayString arrMemberIds;
|
||||||
wxStringHashMap types;
|
wxTypeIdHashMap types;
|
||||||
wxStringHashMap files;
|
wxTypeIdHashMap files;
|
||||||
|
|
||||||
// prealloc quite a lot of memory!
|
// prealloc quite a lot of memory!
|
||||||
m_classes.Alloc(ESTIMATED_NUM_CLASSES);
|
m_classes.Alloc(ESTIMATED_NUM_CLASSES);
|
||||||
@@ -393,11 +397,20 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
while (child)
|
while (child)
|
||||||
{
|
{
|
||||||
const wxString& n = child->GetName();
|
const wxString& n = child->GetName();
|
||||||
const wxString& id = child->GetAttribute("id", wxEmptyString);
|
//const wxString& id = child->GetAttribute("id");
|
||||||
|
unsigned long id = 0;
|
||||||
|
if (!child->GetAttribute("id").Mid(1).ToULong(&id, GCCXML_BASE) ||
|
||||||
|
(id == 0 && n != "File")) {
|
||||||
|
|
||||||
|
// NOTE: <File> nodes can have an id == "f0"...
|
||||||
|
|
||||||
|
LogError("Invalid id for node %s: %s", n, child->GetAttribute("id"));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (n == "Class")
|
if (n == "Class")
|
||||||
{
|
{
|
||||||
wxString cname = child->GetAttribute("name", wxEmptyString);
|
wxString cname = child->GetAttribute("name");
|
||||||
if (cname.IsEmpty()) {
|
if (cname.IsEmpty()) {
|
||||||
LogError("Invalid empty name for '%s' node", n);
|
LogError("Invalid empty name for '%s' node", n);
|
||||||
return false;
|
return false;
|
||||||
@@ -405,10 +418,10 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
|
|
||||||
// only register wx classes (do remember also the IDs of their members)
|
// only register wx classes (do remember also the IDs of their members)
|
||||||
if (cname.StartsWith("wx")) {
|
if (cname.StartsWith("wx")) {
|
||||||
arrMemberIds.Add(child->GetAttribute("members", wxEmptyString));
|
arrMemberIds.Add(child->GetAttribute("members"));
|
||||||
|
|
||||||
// NB: "file" attribute contains an ID value that we'll resolve later
|
// NB: "file" attribute contains an ID value that we'll resolve later
|
||||||
m_classes.Add(wxClass(cname, child->GetAttribute("file", wxEmptyString)));
|
m_classes.Add(wxClass(cname, child->GetAttribute("file")));
|
||||||
}
|
}
|
||||||
|
|
||||||
// register this class also as possible return/argument type:
|
// register this class also as possible return/argument type:
|
||||||
@@ -417,18 +430,18 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
else if (n == "PointerType" || n == "ReferenceType" ||
|
else if (n == "PointerType" || n == "ReferenceType" ||
|
||||||
n == "CvQualifiedType" || n == "ArrayType")
|
n == "CvQualifiedType" || n == "ArrayType")
|
||||||
{
|
{
|
||||||
const wxString& type = child->GetAttribute("type", wxEmptyString);
|
unsigned long type = 0;
|
||||||
if (id.IsEmpty() || type.IsEmpty()) {
|
if (!child->GetAttribute("type").Mid(1).ToULong(&type, GCCXML_BASE) || type == 0) {
|
||||||
LogError("Invalid empty type/id for '%s' node", n);
|
LogError("Invalid type for node %s: %s", n, child->GetAttribute("type"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int attr = 0;
|
unsigned long attr = 0;
|
||||||
if (n == "PointerType")
|
if (n == "PointerType")
|
||||||
attr = ATTRIB_POINTER;
|
attr = ATTRIB_POINTER;
|
||||||
else if (n == "ReferenceType")
|
else if (n == "ReferenceType")
|
||||||
attr = ATTRIB_REFERENCE;
|
attr = ATTRIB_REFERENCE;
|
||||||
else if (n == "CvQualifiedType" && child->GetAttribute("const", "") == "1")
|
else if (n == "CvQualifiedType" && child->GetAttribute("const") == "1")
|
||||||
attr = ATTRIB_CONST;
|
attr = ATTRIB_CONST;
|
||||||
else if (n == "ArrayType")
|
else if (n == "ArrayType")
|
||||||
attr = ATTRIB_ARRAY;
|
attr = ATTRIB_ARRAY;
|
||||||
@@ -440,9 +453,9 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
{
|
{
|
||||||
/* TODO: incomplete */
|
/* TODO: incomplete */
|
||||||
|
|
||||||
const wxString& ret = child->GetAttribute("returns", wxEmptyString);
|
unsigned long ret = 0;
|
||||||
if (id.IsEmpty() || ret.IsEmpty()) {
|
if (!child->GetAttribute("returns").Mid(1).ToULong(&ret, GCCXML_BASE) || ret == 0) {
|
||||||
LogError("Invalid empty ret/id for '%s' node", n);
|
LogError("Invalid empty returns value for '%s' node", n);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -451,18 +464,18 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
}
|
}
|
||||||
else if (n == "File")
|
else if (n == "File")
|
||||||
{
|
{
|
||||||
if (!id.StartsWith("f")) {
|
if (!child->GetAttribute("id").StartsWith("f")) {
|
||||||
LogError("Unexpected file ID: %s", id);
|
LogError("Unexpected file ID: %s", id);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// just ignore this node... all file IDs/names were already parsed
|
// just ignore this node... all file IDs/names were already parsed
|
||||||
files[id] = child->GetAttribute("name", "");
|
files[id] = child->GetAttribute("name");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// we register everything else as a possible return/argument type:
|
// we register everything else as a possible return/argument type:
|
||||||
const wxString& name = child->GetAttribute("name", wxEmptyString);
|
const wxString& name = child->GetAttribute("name");
|
||||||
|
|
||||||
if (!name.IsEmpty())
|
if (!name.IsEmpty())
|
||||||
{
|
{
|
||||||
@@ -501,10 +514,10 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
for (wxToResolveTypeHashMap::iterator i = toResolveTypes.begin();
|
for (wxToResolveTypeHashMap::iterator i = toResolveTypes.begin();
|
||||||
i != toResolveTypes.end();)
|
i != toResolveTypes.end();)
|
||||||
{
|
{
|
||||||
const wxString& id = i->first;
|
unsigned long id = i->first;
|
||||||
const wxString& referenced = i->second.ref;
|
unsigned long referenced = i->second.ref;
|
||||||
|
|
||||||
wxStringHashMap::iterator primary = types.find(referenced);
|
wxTypeIdHashMap::iterator primary = types.find(referenced);
|
||||||
if (primary != types.end())
|
if (primary != types.end())
|
||||||
{
|
{
|
||||||
// this to-resolve-type references a "primary" type
|
// this to-resolve-type references a "primary" type
|
||||||
@@ -566,7 +579,14 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
// resolve header names
|
// resolve header names
|
||||||
for (unsigned int i=0; i<m_classes.GetCount(); i++)
|
for (unsigned int i=0; i<m_classes.GetCount(); i++)
|
||||||
{
|
{
|
||||||
wxStringHashMap::const_iterator idx = files.find(m_classes[i].GetHeader());
|
unsigned long fileID = 0;
|
||||||
|
if (!m_classes[i].GetHeader().Mid(1).ToULong(&fileID, GCCXML_BASE) || fileID == 0) {
|
||||||
|
LogError("invalid header id: %s", m_classes[i].GetHeader());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// search this file
|
||||||
|
wxTypeIdHashMap::const_iterator idx = files.find(fileID);
|
||||||
if (idx == files.end())
|
if (idx == files.end())
|
||||||
{
|
{
|
||||||
// this is an error!
|
// this is an error!
|
||||||
@@ -584,10 +604,10 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
|
|
||||||
if (n == "Method" || n == "Constructor" || n == "Destructor" || n == "OperatorMethod")
|
if (n == "Method" || n == "Constructor" || n == "Destructor" || n == "OperatorMethod")
|
||||||
{
|
{
|
||||||
wxString id = child->GetAttribute("id", wxEmptyString);
|
wxString id = child->GetAttribute("id");
|
||||||
|
|
||||||
// only register public methods
|
// only register public methods
|
||||||
if (child->GetAttribute("access", wxEmptyString) == "public")
|
if (child->GetAttribute("access") == "public")
|
||||||
{
|
{
|
||||||
wxASSERT(arrMemberIds.GetCount()==m_classes.GetCount());
|
wxASSERT(arrMemberIds.GetCount()==m_classes.GetCount());
|
||||||
|
|
||||||
@@ -631,11 +651,11 @@ bool wxXmlGccInterface::Parse(const wxString& filename)
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
||||||
const wxStringHashMap& types,
|
const wxTypeIdHashMap& types,
|
||||||
wxMethod& m)
|
wxMethod& m)
|
||||||
{
|
{
|
||||||
// get the real name
|
// get the real name
|
||||||
wxString name = p->GetAttribute("name", wxEmptyString).Strip(wxString::both);
|
wxString name = p->GetAttribute("name").Strip(wxString::both);
|
||||||
if (p->GetName() == "Destructor")
|
if (p->GetName() == "Destructor")
|
||||||
name = "~" + name;
|
name = "~" + name;
|
||||||
else if (p->GetName() == "OperatorMethod")
|
else if (p->GetName() == "OperatorMethod")
|
||||||
@@ -643,18 +663,18 @@ bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
|||||||
|
|
||||||
// resolve return type
|
// resolve return type
|
||||||
wxType ret;
|
wxType ret;
|
||||||
wxString retid = p->GetAttribute("returns", wxEmptyString);
|
unsigned long retid = 0;
|
||||||
if (retid.IsEmpty())
|
if (!p->GetAttribute("returns").Mid(1).ToULong(&retid, GCCXML_BASE) || retid == 0)
|
||||||
{
|
{
|
||||||
if (p->GetName() != "Destructor" && p->GetName() != "Constructor") {
|
if (p->GetName() != "Destructor" && p->GetName() != "Constructor") {
|
||||||
LogError("Empty return ID for method '%s', with ID '%s'",
|
LogError("Empty return ID for method '%s', with ID '%s'",
|
||||||
name, p->GetAttribute("id", ""));
|
name, p->GetAttribute("id"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxStringHashMap::const_iterator retidx = types.find(retid);
|
wxTypeIdHashMap::const_iterator retidx = types.find(retid);
|
||||||
if (retidx == types.end()) {
|
if (retidx == types.end()) {
|
||||||
LogError("Could not find return type ID '%s'", retid);
|
LogError("Could not find return type ID '%s'", retid);
|
||||||
return false;
|
return false;
|
||||||
@@ -663,7 +683,7 @@ bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
|||||||
ret = wxType(retidx->second);
|
ret = wxType(retidx->second);
|
||||||
if (!ret.IsOk()) {
|
if (!ret.IsOk()) {
|
||||||
LogError("Invalid return type '%s' for method '%s', with ID '%s'",
|
LogError("Invalid return type '%s' for method '%s', with ID '%s'",
|
||||||
retidx->second, name, p->GetAttribute("id", ""));
|
retidx->second, name, p->GetAttribute("id"));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -676,8 +696,14 @@ bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
|||||||
{
|
{
|
||||||
if (arg->GetName() == "Argument")
|
if (arg->GetName() == "Argument")
|
||||||
{
|
{
|
||||||
wxString id = arg->GetAttribute("type", wxEmptyString);
|
unsigned long id = 0;
|
||||||
wxStringHashMap::const_iterator idx = types.find(id);
|
if (!arg->GetAttribute("type").Mid(1).ToULong(&id, GCCXML_BASE) || id == 0) {
|
||||||
|
LogError("Invalid argument type ID '%s' for method '%s' with ID %s",
|
||||||
|
arg->GetAttribute("type"), name, p->GetAttribute("id"));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
wxTypeIdHashMap::const_iterator idx = types.find(id);
|
||||||
if (idx == types.end()) {
|
if (idx == types.end()) {
|
||||||
LogError("Could not find argument type ID '%s'", id);
|
LogError("Could not find argument type ID '%s'", id);
|
||||||
return false;
|
return false;
|
||||||
@@ -685,7 +711,7 @@ bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
|||||||
|
|
||||||
argtypes.Add(wxType(idx->second));
|
argtypes.Add(wxType(idx->second));
|
||||||
|
|
||||||
wxString def = arg->GetAttribute("default", "");
|
wxString def = arg->GetAttribute("default");
|
||||||
if (def.Contains("wxGetTranslation"))
|
if (def.Contains("wxGetTranslation"))
|
||||||
argdefs.Add(wxEmptyString); // TODO: wxGetTranslation gives problems to gccxml
|
argdefs.Add(wxEmptyString); // TODO: wxGetTranslation gives problems to gccxml
|
||||||
else
|
else
|
||||||
@@ -698,9 +724,9 @@ bool wxXmlGccInterface::ParseMethod(const wxXmlNode *p,
|
|||||||
m.SetReturnType(ret);
|
m.SetReturnType(ret);
|
||||||
m.SetName(name);
|
m.SetName(name);
|
||||||
m.SetArgumentTypes(argtypes, argdefs);
|
m.SetArgumentTypes(argtypes, argdefs);
|
||||||
m.SetConst(p->GetAttribute("const", "") == "1");
|
m.SetConst(p->GetAttribute("const") == "1");
|
||||||
m.SetStatic(p->GetAttribute("static", "") == "1");
|
m.SetStatic(p->GetAttribute("static") == "1");
|
||||||
m.SetVirtual(p->GetAttribute("virtual", "") == "1");
|
m.SetVirtual(p->GetAttribute("virtual") == "1");
|
||||||
|
|
||||||
if (!m.IsOk()) {
|
if (!m.IsOk()) {
|
||||||
LogError("The prototype '%s' is not valid!", m.GetAsString());
|
LogError("The prototype '%s' is not valid!", m.GetAsString());
|
||||||
@@ -740,9 +766,9 @@ bool wxXmlDoxygenInterface::Parse(const wxString& filename)
|
|||||||
while (compound)
|
while (compound)
|
||||||
{
|
{
|
||||||
if (compound->GetName() == "compound" &&
|
if (compound->GetName() == "compound" &&
|
||||||
compound->GetAttribute("kind", "") == "class")
|
compound->GetAttribute("kind") == "class")
|
||||||
{
|
{
|
||||||
wxString refid = compound->GetAttribute("refid", "");
|
wxString refid = compound->GetAttribute("refid");
|
||||||
|
|
||||||
wxFileName fn(filename);
|
wxFileName fn(filename);
|
||||||
if (!ParseCompoundDefinition(fn.GetPath(wxPATH_GET_SEPARATOR) + refid + ".xml"))
|
if (!ParseCompoundDefinition(fn.GetPath(wxPATH_GET_SEPARATOR) + refid + ".xml"))
|
||||||
@@ -784,7 +810,7 @@ bool wxXmlDoxygenInterface::ParseCompoundDefinition(const wxString& filename)
|
|||||||
while (child)
|
while (child)
|
||||||
{
|
{
|
||||||
if (child->GetName() == "compounddef" &&
|
if (child->GetName() == "compounddef" &&
|
||||||
child->GetAttribute("kind", wxEmptyString) == "class")
|
child->GetAttribute("kind") == "class")
|
||||||
{
|
{
|
||||||
// parse this class
|
// parse this class
|
||||||
wxClass klass;
|
wxClass klass;
|
||||||
@@ -794,14 +820,14 @@ bool wxXmlDoxygenInterface::ParseCompoundDefinition(const wxString& filename)
|
|||||||
while (subchild)
|
while (subchild)
|
||||||
{
|
{
|
||||||
if (subchild->GetName() == "sectiondef" &&
|
if (subchild->GetName() == "sectiondef" &&
|
||||||
subchild->GetAttribute("kind", wxEmptyString) == "public-func")
|
subchild->GetAttribute("kind") == "public-func")
|
||||||
{
|
{
|
||||||
|
|
||||||
wxXmlNode *membernode = subchild->GetChildren();
|
wxXmlNode *membernode = subchild->GetChildren();
|
||||||
while (membernode)
|
while (membernode)
|
||||||
{
|
{
|
||||||
if (membernode->GetName() == "memberdef" &&
|
if (membernode->GetName() == "memberdef" &&
|
||||||
membernode->GetAttribute("kind", wxEmptyString) == "function")
|
membernode->GetAttribute("kind") == "function")
|
||||||
{
|
{
|
||||||
|
|
||||||
wxMethod m;
|
wxMethod m;
|
||||||
@@ -936,18 +962,18 @@ bool wxXmlDoxygenInterface::ParseMethod(const wxXmlNode* p, wxMethod& m, wxStrin
|
|||||||
}
|
}
|
||||||
else if (child->GetName() == "location")
|
else if (child->GetName() == "location")
|
||||||
{
|
{
|
||||||
if (child->GetAttribute("line", "").ToLong(&line))
|
if (child->GetAttribute("line").ToLong(&line))
|
||||||
m.SetLocation((int)line);
|
m.SetLocation((int)line);
|
||||||
header = child->GetAttribute("file", "");
|
header = child->GetAttribute("file");
|
||||||
}
|
}
|
||||||
|
|
||||||
child = child->GetNext();
|
child = child->GetNext();
|
||||||
}
|
}
|
||||||
|
|
||||||
m.SetArgumentTypes(args, defs);
|
m.SetArgumentTypes(args, defs);
|
||||||
m.SetConst(p->GetAttribute("const", "")=="yes");
|
m.SetConst(p->GetAttribute("const")=="yes");
|
||||||
m.SetStatic(p->GetAttribute("static", "")=="yes");
|
m.SetStatic(p->GetAttribute("static")=="yes");
|
||||||
m.SetVirtual(p->GetAttribute("virt", "")=="virtual");
|
m.SetVirtual(p->GetAttribute("virt")=="virtual");
|
||||||
|
|
||||||
if (!m.IsOk()) {
|
if (!m.IsOk()) {
|
||||||
LogError("The prototype '%s' is not valid!", m.GetAsString());
|
LogError("The prototype '%s' is not valid!", m.GetAsString());
|
||||||
|
@@ -253,11 +253,13 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
WX_DECLARE_STRING_HASH_MAP( wxString, wxStringHashMap );
|
WX_DECLARE_HASH_MAP( unsigned long, wxString,
|
||||||
|
wxIntegerHash, wxIntegerEqual,
|
||||||
|
wxTypeIdHashMap );
|
||||||
#else
|
#else
|
||||||
#include <map>
|
#include <map>
|
||||||
typedef std::basic_string<char> stlString;
|
typedef std::basic_string<char> stlString;
|
||||||
typedef std::map<stlString, stlString> wxStringHashMap;
|
typedef std::map<unsigned long, stlString> wxTypeIdHashMap;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@@ -280,7 +282,7 @@ public:
|
|||||||
|
|
||||||
bool Parse(const wxString& filename);
|
bool Parse(const wxString& filename);
|
||||||
bool ParseMethod(const wxXmlNode *p,
|
bool ParseMethod(const wxXmlNode *p,
|
||||||
const wxStringHashMap& types,
|
const wxTypeIdHashMap& types,
|
||||||
wxMethod& m);
|
wxMethod& m);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user