2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[2281] Rename factory_link.h to static_datasrc.h

This is because the config argument will have to be documented.
This commit is contained in:
Mukund Sivaraman 2013-02-12 09:49:15 +05:30
parent 6a06b311fb
commit d7f14ea88e
3 changed files with 5 additions and 4 deletions

View File

@ -52,6 +52,7 @@ sqlite3_ds_la_LIBADD += libb10-datasrc.la
sqlite3_ds_la_LIBADD += $(SQLITE_LIBS)
static_ds_la_SOURCES = static_datasrc_link.cc
static_ds_la_SOURCES += static_datasrc.h
static_ds_la_LDFLAGS = -module -avoid-version
static_ds_la_LIBADD = $(top_builddir)/src/lib/exceptions/libb10-exceptions.la
static_ds_la_LIBADD += libb10-datasrc.la

View File

@ -13,8 +13,8 @@
// PERFORMANCE OF THIS SOFTWARE.
#ifndef DATASRC_FACTORY_LINK_H
#define DATASRC_FACTORY_LINK_H
#ifndef DATASRC_STATIC_H
#define DATASRC_STATIC_H
#include <datasrc/database.h>
#include <cc/data.h>
@ -32,7 +32,7 @@ extern "C" void destroyInstance(DataSourceClient* instance);
}
}
#endif // DATASRC_FACTORY_LINK_H
#endif // DATASRC_STATIC_H
// Local Variables:
// mode: c++

View File

@ -13,7 +13,7 @@
// PERFORMANCE OF THIS SOFTWARE.
#include "client.h"
#include "factory_link.h"
#include "static_datasrc.h"
#include <datasrc/memory/memory_client.h>
#include <datasrc/memory/zone_table_segment.h>