mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 04:52:59 +01:00
Merge pull request #23 from ulikoehler/master
Add README syntax highlighting
This commit is contained in:
commit
e8ffe7ef96
12
README.md
12
README.md
@ -20,11 +20,11 @@ To use the library in your program, include msgpack.hpp header and link "msgpack
|
|||||||
|
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
```CPP
|
||||||
|
#include <msgpack.hpp>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include <msgpack.hpp>
|
int main(void) {
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
int main(void) {
|
|
||||||
// This is target object.
|
// This is target object.
|
||||||
std::vector<std::string> target;
|
std::vector<std::string> target;
|
||||||
target.push_back("Hello,");
|
target.push_back("Hello,");
|
||||||
@ -48,7 +48,9 @@ To use the library in your program, include msgpack.hpp header and link "msgpack
|
|||||||
|
|
||||||
// If the type is mismatched, it throws msgpack::type_error.
|
// If the type is mismatched, it throws msgpack::type_error.
|
||||||
obj.as<int>(); // type is mismatched, msgpack::type_error is thrown
|
obj.as<int>(); // type is mismatched, msgpack::type_error is thrown
|
||||||
}
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
API documents and other example codes are available at the [wiki.](http://redmine.msgpack.org/projects/msgpack/wiki)
|
API documents and other example codes are available at the [wiki.](http://redmine.msgpack.org/projects/msgpack/wiki)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user