Skip to content
Snippets Groups Projects
Select Git revision
  • f89360c69ea7e1b70f066b0370a581edd8d0fbb5
  • main default protected
  • dev
  • f-docs-pylib
  • f-parse-value
  • f-compare
  • f-string-ids
  • f-217-set-special-property
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-directory
  • f-filesystem-core
  • f-filesystem-cleanup
  • f-check-merge-entities
  • f-compare-enid
  • f-select-subproperties
  • v0.18.0
  • v0.17.0
  • v0.16.0
  • v0.15.1
  • v0.15.0
  • v0.14.0
  • v0.13.2
  • v0.13.1
  • v0.13.0
  • linkahead-rename-step-2
  • linkahead-rename-step-1
  • v0.12.0
  • v0.11.2
  • v0.11.1
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.4
  • v0.7.3
36 results

test_versioning.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    caosdbcli.cpp 544 B
    // A simple caosdb client
    #include "connection.h"
    #include "caosdb_config.h"
    #include <memory>
    #include <iostream>
    
    auto main() -> int {
    
      std::cout << "CaosDB (libcaosdb " << caosdb::LIBCAOSDB_VERSION_MINOR << "."
                << caosdb::LIBCAOSDB_VERSION_MINOR << "."
                << caosdb::LIBCAOSDB_VERSION_PATCH << ")" << std::endl;
      std::cout << "We don't miss the H of caos." << std::endl;
    
      // NOLINTNEXTLINE(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
      return caosdb::configure_connection("localhost", 8080);
    }