]> granicus.if.org Git - graphviz/commitdiff
gvc++: add GVContext::buildDate()
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Mon, 7 Mar 2022 12:37:54 +0000 (13:37 +0100)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Tue, 16 Aug 2022 10:21:45 +0000 (12:21 +0200)
CHANGELOG.md
lib/gvc++/GVContext.cpp
lib/gvc++/GVContext.h

index 29c422c2217b80ad0ff51e424c41a5105fca7b7d..fcc5644d1c2ae55a30ff8e474d6f1e1d9f970733 100644 (file)
@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added
  - GVContext::version() to lib/gvc++
+ - GVContext::buildDate() to lib/gvc++
 
 ## [5.0.0] – 2022-07-07
 
index b5ab5150b4b32fde4f5722d2a180ecce172b8068..c2628e88ca202a5123b991c1ecc8886ac9a53539 100644 (file)
@@ -15,6 +15,8 @@ GVContext::~GVContext() {
   gvFreeContext(m_gvc);
 }
 
+std::string_view GVContext::buildDate() const { return gvcBuildDate(m_gvc); }
+
 std::string_view GVContext::version() const { return gvcVersion(m_gvc); }
 
 } // namespace GVC
index 4f42e07c11e9f4ad6e34b2c0fe71a6d14a4bacbc..88a1d23a6831c91ba40eaa682f12200b3971c389 100644 (file)
@@ -55,6 +55,7 @@ public:
   // get a non-owning pointer to the underlying C data structure
   GVC_t *c_struct() const { return m_gvc; }
 
+  std::string_view buildDate() const;
   std::string_view version() const;
 
 private: