Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
wiki:documentation:devguide:core:uri [2016/10/04 11:03] carolina.santos [TerraLib.Core: URI] |
wiki:documentation:devguide:core:uri [2016/10/04 13:59] (current) carolina.santos [References] |
||
|---|---|---|---|
| Line 7: | Line 7: | ||
| ==== C++ ==== | ==== C++ ==== | ||
| - | A API para manipulação de URIs na TerraLib é definida pela classe **URI**, mostrada abaixo: | + | The API for URL manipulation in TerraLib is defined by the **URI** class, shown below: |
| <code cpp> | <code cpp> | ||
| Line 19: | Line 19: | ||
| \brief A class for representing an Uniform Resource Identifier (URI). | \brief A class for representing an Uniform Resource Identifier (URI). | ||
| */ | */ | ||
| - | class TECOREEXPORT URI | + | class URI |
| { | { | ||
| public: | public: | ||
| Line 123: | Line 123: | ||
| </code> | </code> | ||
| - | ===== Exemplos ===== | + | ===== Examples ===== |
| - | A seguir alguns exemplos para ilustrar o uso da classe URI: | + | Here are some examples to illustrate the use of the URI class: |
| <code cpp> | <code cpp> | ||
| Line 211: | Line 211: | ||
| </code> | </code> | ||
| - | ===== Referências ===== | + | ===== Additional References ===== |
| * [[https://pt.wikipedia.org/wiki/URI | URI]] | * [[https://pt.wikipedia.org/wiki/URI | URI]] | ||
| - | * [[http://doc.qt.io/qt-5/qurl.html | QUrl]] | ||
| - | * [[http://uriparser.sourceforge.net/ | libURI]] | ||