Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

This is libkml, Google's library for use with applications that want to parse, generate and operate on KML. It is an implementation of the OGC KML 2.2 standard. It is written in C++ and bindings are available via SWIG to Java and Python. A basic guide for our 1.2 release is here. Atom feeds for project updates are linked here.

0
 
  0 reviews  |  1 user  |  214,613 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

gxp

Compare

Google XML Pages 0.2 (Beta)GXP is a templating system used to generate XML/SGML markup (most often HTML). Core FeaturesSupport for multiple languages (currently Java & JavaScript; C++ in progress). Support for runtime compilation. Compile-time type checking and partial markup validation. ... [More] Automatic escaping of untrusted content. Internationalization support. Convenient parameter passing/modularization system. Very lightweight runtime system. Strongly encourages functional (as opposed to imperative) style in templates. User DocumentationIntroduction (OSCON 2008 Talk slides) Tutorials Language Reference Library Reference (javadoc) FAQ Developer DocumentationCompilerArchitecture [Less]

0
 
  0 reviews  |  0 users  |  173,251 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

Several programs that I wrote in different languages while learning them are hosted here. All are commented in detail. I thought that they might be useful to someone learning programming . If anybody finds a better way to code a particular part of the program, particularly those parts of the program ... [More] where I have commented asking for a better way to do a particular thing, please do let me know at sisir.koppaka@gmail.com. [Less]

0
 
  0 reviews  |  0 users  |  156 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

Teardrop provides a way to query multiple search engines at the same time, and explore their results as a single source. It's available both in a command line and a web based graphical version. Search engines can be added and created freely, at will.

0
 
  0 reviews  |  0 users  |  56,916 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

foodborne illness is a dangerous illness/disease because when your not careful and you haven't cook your food all the way through you can get food Poisoning. but anyway foodborne illness is also consumed when the animal is at the stock house before butching.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 3 days ago
 
 

提供一个简单易用的C++类Properties用以读写基于xml格式的配置文件, 从而实现类似java中Properties类的作用。两者生成的xml文件可以互通。 Xml时代据说已经到来了,现在的程序流行使用xml配置文件。如果你 ... [More] 使用过java中的Properties类,你会发现它的方便。很多时候我们并不 需要多么庞大的类库,我们仅仅需要从xml文件中提取“key-value”形式 的配置参数或将其写入。我们需要易于使用的尽可能小的类库。我们可 能想按以下代码形式完成我们的配置文件解析工作:(见src/test/tes- tproperties.cpp) codeProperties p; p.setProperty("sid","harite"); p.setProperty("port","1521"); p.setProperty("userpassword","12y3_aer65"); p.setProperty("host","127.0.0.1"); p.setProperty("username","system"); p.storeToXML("connectsetting.xml"); p.clear(); if(!p.loadFromXML("connectsetting.xml")) { cout << "falue" << endl; } else { for(Properties::const_iterator it = p.begin() ; it!=p.end() ; ++it) { cout << (*it).first << "-->" << (*it).second << endl; } cout << "use getProperty" << endl; cout << p.getProperty("sid", "") << endl; cout << p.getProperty("username", "") << endl; cout << p.getProperty("port", "") << endl; cout << p.getProperty("notexist", "defaultvalue") << endl; p.clear(); }code是不是发现这个c++类的名字和几个方法与java中的Properties类很相 似?哈哈,你是对的,使用libproperties库生成的xml文件是完全可以与 java中Properties类互通的!libproperties库可以无障碍的读取java程 序产生的xml文件(使用Properties类)。 libproperties库会不会难于学习?不会!它对外只提供一个类和几个 公共方法。(仅有类Properties) libproperties库线程安全吗?不安全。底层基于tinyxml2.4.3库,这 个库线程不安全。 我已经有了tinyxml库,如果安装了libproperties库,会不会冲突? 如果你已经安装了tinyxml库,包括头文件和库文件,则可以将include 目录下的libproperties.h和libproperties_tinyxml_ext.h引入你的工 程头文件搜索路径,将src/libproperties里的libproperties.cpp和l- ibproperties_tinyxml_ext.cpp源文件引入你的工程即可。libproper- tis源文件没有修改任何tinyxml源文件,只是衍生出几个类。 [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 1 day ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.