File: table.cpp

package info (click to toggle)
amqp-cpp 4.3.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,384 kB
  • sloc: cpp: 10,021; ansic: 191; makefile: 95
file content (19 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include <amqpcpp.h>


int main()
{
    AMQP::Array x;
    
    x[0] = "abc";
    x[1] = "xyz";
    
    std::cout << x << std::endl;
    std::cout << x[0] << std::endl;
    std::cout << x[1] << std::endl;
    

    return 0;
}