资 源 简 介
Vocabulary Management for Collaborative Concept Exchange
This is a general api and library of CONEX. This source code is supported by Prof. Jingzhi Guo and PHD Candidate Mr. Guangyi Xiao at University of Macau, which is a implement of the research of Collaborative Concept Exchange project.
This source code is developed with c++. CMake is adapted for source build, which is a cross-domain build tool.
C++ API Sample:
//new a vocabularyVocabulary voc;//new a data access for vocabulary from voc.xmlVocabularyXmlAccess* xmlAccess = new VocabularyXmlAccess("Vocabulary_1.0.xml", "XPMVoc_V09R65.xsd");//new a vocabulary control with a special data accessVocabularyControl vocControl(xmlAccess);//use vocabulary to load data to the vocabularyvocControl.Load(voc);//add a new term to the vocabularyTerm* term = voc.CreateTerm();//term->iid;//add the other new term to the vocabularyTerm* term2 = voc.CreateTer