Dripline-Cpp  v2.4.2
Dripline Implementation in C++
version_store.cc
Go to the documentation of this file.
1 /*
2  * version_store.cc
3  *
4  * Created on: Sep 20, 2019
5  * Author: N.S. Oblath
6  */
7 
8 #define DRIPLINE_API_EXPORTS
9 
10 #include "version_store.hh"
11 
12 
13 namespace dripline
14 {
15 
17  f_versions()
18  {}
19 
21  {}
22 
23  DRIPLINE_API void add_version( const std::string& a_name, scarab::version_semantic_ptr_t a_version_ptr )
24  {
25  version_store::get_instance()->add_version( a_name, a_version_ptr );
26  }
27 
28 
29 } /* namespace dripline */
#define DRIPLINE_API
Definition: dripline_api.hh:34
void add_version(const std::string &a_name)