File: test.cpp

package info (click to toggle)
mongo-cxx-driver 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 13,832 kB
  • sloc: cpp: 61,365; python: 1,436; sh: 356; xml: 253; perl: 215; makefile: 21
file content (13 lines) | stat: -rw-r--r-- 413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
// DO NOT EDIT THIS FILE DIRECTLY
// This file was auto generated from the template file test.cpp.j2 using the generate.py script

#include <iostream>

#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp>

int main(void) {
    mongocxx::instance inst{};
    std::cout << "mongo-cxx-driver version: " << MONGOCXX_VERSION_STRING << std::endl;
    std::cout << "THE bookworm IMAGE WORKS!" << std::endl;
}